批量重命名文件夹中的文件
我有一些文件(大约 10000 个文件)采用以下格式,
SDEF-2001-23965-236.pdf
SlkF-1991-65-123.pdf
我想检查文件名是否采用所需格式,通过从末尾删除 4 个字符来重命名它,
SDEF-2001-23965-236.pdf >>SDEF-2001-23965.pdf
SlkF-1991-65-123.pdf >>SlkF-1991-65.pdf
我不知道应该如何创建一个可以执行我需要的操作的 .bat 文件。
I have some files (about 10000 files) in bellow format
SDEF-2001-23965-236.pdf
SlkF-1991-65-123.pdf
I want to check if the file name is in wanted format rename it by removing 4 characters from end
SDEF-2001-23965-236.pdf >>SDEF-2001-23965.pdf
SlkF-1991-65-123.pdf >>SlkF-1991-65.pdf
I do not know how should I create a .bat file that can do what I need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 DOS 中进行“字符串操作”,以下链接很有用:
http://www.dostips.com/ DtTipsStringManipulation.php
如果您有
*.pdf
文件,格式为aaaa-bbb-cc-ddd.ext
(4 部分 + 扩展名)创建名为
rn.bat
的文件:创建名为
rnall.bat
的文件:然后,在命令行中输入命令:
rnall *.pdf
。这不是最好的代码,您可以使用函数做得更好
You need "String Manipulation" in DOS, the following link is useful:
http://www.dostips.com/DtTipsStringManipulation.php
If you have
*.pdf
files with formataaaa-bbb-cc-ddd.ext
(4 parts + extension)Create a file named
rn.bat
:Create a file named
rnall.bat
:Then, enter command:
rnall *.pdf
in commmand line.This is not best code, you can use functions to do it better