命令行(或批处理文件)重命名文件夹中的所有文件 (Windows)
我需要使用以下文件名格式重命名文件夹中的所有文件;
itemID-straight-bottle.png
TO
itemID-bottle.png
如何使用 cmd 脚本或在命令行中完成此操作?
例子;
REDHI20806-straight-bottle.png 至 REDHI20806-bottle.png
我应该说,这是在 Windows 中,我想使用命令行或批处理文件对特定驱动器上的文件夹中的所有文件运行此重命名
I need to rename all of the files in a folder with the following filename format;
itemID-straight-bottle.png
TO
itemID-bottle.png
How can i accomplish this with a cmd script or in the command line?
example;
REDHI20806-straight-bottle.png TO REDHI20806-bottle.png
I should have said, this is in Windows and i want to use either command line or a batch file to run this renaming on all files in a folder on a specific drive
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
简短回答
在 Windows 上,您可以使用 Windows 7 上默认安装的 PowerShell,并且可以在以前的版本上下载并安装。使用 PowerShell,您可以将重命名为:
在 Unix/Linux 上,无需安装任何特定内容,您可以将重命名为:
示例
Windows 示例
给定
执行
结果
Unix/Linux 示例
给定
执行
结果
short answer
On Windows, you can use PowerShell, that is installed by default on Windows 7, and can be downloaded and installed on previous versions. With PowerShell you can do the rename as:
On Unix/Linux, nothing specific needs to be installed, and you can do the rename as:
examples
Windows Example
Given
Doing It
Result
Unix/Linux Example
Given
Doing It
Result
如果只有文件名的最后一部分(
straight-bottle.png
)需要更改(为bottle.png
),您可以简单地执行以下操作:(我没有测试这个尽管)
if only the last part of the filename (
straight-bottle.png
) needs to change (tobottle.png
) you can simply do this:(I did not test this though)
我最终选择了 wimh 的答案 的修改版本,但不是“?????????” ,我使用了“*”,我认为它可以更好地处理不同长度的名称。
I ended up going with a modified version of wimh's answer but instead of "??????????", I used "*" which I think better handles names of different lengths.
就我个人而言,我会使用专门为批量重命名而设计的工具,例如 renamer。
此命令从当前目录中的所有文件中删除
-straight
文本:Personally, I would use a tool designed specifically for bulk renaming, e.g. renamer.
This command strips out the
-straight
text from all files in the current directory: