我正在尝试一个简单的替换脚本来替换 app.cofig 文件中的文本。但它只是处理并什么都不做:
$old = 'Z:\gene'
$new = 'z:\gene\scripts'
Get-ChildItem z:\gene\scripts\Test\App.config -Recurse | Where {$_ -IS [IO.FileInfo]} |
% {
(Get-Content $_.FullName) -replace $old,$new | Set-Content $_.FullName
Write-Host "Processed: " + $_.FullName
}
任何想法我做错了什么。由于相同的脚本适用于 .txt 文件谢谢