使用命令提示符编辑文件名
我的一个文件夹中有很多文件,我在某些文件中输入了错误的名称 例如:
文件名如下:abcefxyz.txt
,而我想输入abcdevwxyz.txt
也就是说,我只是想用 devw
替换文件名中的 ef
字符串 我如何使用命令提示符执行此操作? 请帮助...
EDITED
我有数千个文件,其名称如下:SomethingLongString_OutdoorGames_DateTime.txt
(我想输入)但
意外地在某些文件中,数量可能有数百或数千,我输入了 SomethingLongString_IndoorGame_DateTime.txt
我只是想替换 IndoorGame
字符串文件名带有 OutdoorGame
字符串(准确地说)。
这里文件名中的 SomethingLongString
和 DateTime
字符串对于不同的文件是不同的。
我认为这个例子更有助于理解我的问题......
I have a number of files in a folder, by mistaken in some of files I enter the wrong name
for example :
filename like : abcefxyz.txt
while I suppose to enter abcdevwxyz.txt
that is I simply want to replace ef
string in filename with devw
how can I do this using command prompt?
please help...
EDITED
I have a thousands of files whose name like : SomethingLongString_OutdoorGames_DateTime.txt
(which I suppose to enter) but
Accidently in some of files, may be hundreds or thousands in number, I have enter SomethingLongString_IndoorGame_DateTime.txt
I simply want to replace IndoorGame
string in filename with OutdoorGame
string (precisely saying).
Here SomethingLongString
and DateTime
strings in filename is different for different file.
I think this example is more helpful to understand my problem...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在Windows上使用
我不知道如何用其他字符替换一些字符,但是你可以重命名这样
目录路径>任 abcefxyz.txt abcdevwxyz.txt
on windows use
I dont know how to replace some chars with others,but u can rename this way
dirpath> ren abcefxyz.txt abcdevwxyz.txt
不知道..如果它们都是 TXT 文件,则将它们隔离在一个文件夹中。
从那里使用高级重命名器到没有扩展名的文件
这样你就可以使用 26 个字母来重命名该组。
CMD 使用将是 Ren A* A(1,2,3,4 等)
或使用旧计算机的 XCOPY a* A..
在批处理中,您可以用于 @ (文件名) do (ren) 语句
这有帮助吗?
DUNNO.. if they are all TXT files then isolate them in a folder.
From there use Advanced Renamer to a file with NO extension
this way you can use 26 letters to rename the bunch.
CMD use would be Ren A* A (1,2,3,4 etc)
or XCOPY a* A using an older computer..
in a batch you could use for @ (filename) do (ren) statements
Would this help?