Powershell 批量重命名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 批量重命名相关的知识,希望对你有一定的参考价值。

先创建几个用于测试的文件

$Directory = "C:\Test"
For($i=0;$i -le 10; ++$i) {
Set-Content -Path $("$Directory\Test($i).txt") -value $i 
}

创建结果如下图:
技术分享图片

使用下面的命令把Test换成Mail

PS D:\> $Directory = "C:\Test"
PS D:\> Get-ChildItem $Directory | Rename-Item -NewName { $_.name -Replace "Test","Mail" }

结果如下图:
技术分享图片

学习链接:

http://www.computerperformance.co.uk/powershell/powershell_replace.htm
http://www.pstips.net/bulk-renaming-files.html

以上是关于Powershell 批量重命名的主要内容,如果未能解决你的问题,请参考以下文章

Powershell-批量重命名替换文件名

Powershell 批量重命名

Powershell 批量重命名文件中含有 [] 导致报错

使用 Powershell 递归重命名文件

[powershell] 批量重命名,修改文件名中的部分字符串

文件夹批量改名?