Powershell 批量修改文件名

功能:

1
2
3
4
5
6
7
# 把所有的 JPG 文件重新命名为 image_编号.jpg
Get-ChildItem *.jpg | ForEach-Object -Begin {
$count = 1
} -Process {
Rename-Item $_ -NewName "image_$count.jpg"
$count++
}

参考: