Powershell 批量重命名文件中含有 [] 导致报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 批量重命名文件中含有 [] 导致报错相关的知识,希望对你有一定的参考价值。
下载的所有文件中都包含了 “[下载网站地址]”, 按照常规方法
Get-ChildItem "D:Bluey" -Recurse |ForEach-Object{Rename-Item -Path $_.FullName -NewName $_.FullName.Replace(‘old‘,‘new‘)}
一直报告无法发现源文件,查阅后得知当文件名中包含特殊字符,需要使用 -LiteralPath 参数。
Get-ChildItem "D:Bluey" -Recurse |
Where-Object {$_.Name -match ‘[.+]‘ } |
foreach {
Rename-Item -LiteralPath $_.FullName -NewName $($_.Name -replace ‘[.+]‘,‘-‘)
}
将[]和其间字符替换为-。
以上是关于Powershell 批量重命名文件中含有 [] 导致报错的主要内容,如果未能解决你的问题,请参考以下文章