如何使用窗口cmd批量附加文件目录,以便从更改。
"文件1"文件2"file3"
至
"001文件1"002文件2"003 file3"
如果你愿意使用PowerShell而不是批处理,你可以一次性使用:
gci |% { ren $_ (('{0:d3} ' -f $i++) + $_.Name) }
更完整地写为:
$counter = 0
Get-ChildItem | ForEach-Object {
$prefix = '{0:d3}' -f $counter++
Rename-Item -Path $_.FullName -NewName "$prefix $($_.Name)"
}