如何将多个文件 00001.png 重命名为 000001.png

发布于 2025-01-17 06:03:50 字数 315 浏览 1 评论 0原文

如何将多个文件00001.png重命名为000001.png基本上就是在其中添加1个0 该文件夹有 200,000 张 png。如00001.png,00002.png,00003.png,00004.png,00005.png……

一切都按顺序进行,在99999.png之后,下一个是100000.png,但来自00001.png到 99999.png 我想要 000001.png 到 099999.png

我也不知道有效的方法,我也不是编码员,所以我最多不能做的就是将代码或其他内容复制粘贴到 .bat 文件或 powershell 中并运行它:(

how to rename multiple files 00001.png to 000001.png basically add 1 more 0 to it
the folder has 200,000 pngs. as 00001.png,00002.png,00003.png,00004.png,00005.png......

everything is in order , after 99999.png the next on is 100000.png but from 00001.png to 99999.png i would like 000001.png to 099999.png

dont really know effective ways also i not a coder, so max i cant do is pretty much copy paste a code or somethinng into a .bat file or powershell and run it :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

偏爱自由 2025-01-24 06:03:50

我不确定它是否适用于 Windows,但您可以尝试将其粘贴到您的 powerShell 中位于您要重命名的文件的文件夹中

 for file in $(ls .); mv "$file" "0$file";  

I'm not sure if it will work on windows, but you could try paste this in your powerShell being located in the folder which you have the files to rename.

 for file in $(ls .); mv "$file" "0$file";  
浅暮の光 2025-01-24 06:03:50
for %i in (0????.png) do ren %i 0%i
for %i in (0????.png) do ren %i 0%i
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文