如何重命名目录中的所有文件?
所以,我有一个给定的目录,该目录包含其他子目录,每个子目录都可以包含一个文件。我必须更改所有文件名,使其以 ".txt" 结尾。
So, i have a given directory, and that directory contains other subdirectories, and every subdirectory can contain a file. I have to change all the files names, so that it will end in ".txt" .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
**您可以使用 bash 执行类似的操作:并用它遍历所有目录 **
另一种解决方案是在 Linux 中使用 : rename ,
其中重命名将重命名所有提到的文件,如提供的正则表达式在 perlexpr 参数中。
例子 :
**You can do something like this using bash : and go over all your directories with it **
another solution would be using : rename in Linux
where the rename will rename all the files mentioned like the regex supplied in the perlexpr parameter.
example :