我正在开发一个 PowerShell 脚本,该脚本在给定的 DIRECTORY 中查找所有带有 PATTERN 的文件,打印出突出显示 PATTERN 的文档的相关行,然后用提供的 REPLACE 字替换 PATTERN,然后将文件保存回来。所以它实际上编辑了文件。
除了我不能让它改变文件,因为 Windows 抱怨文件已经打开。我尝试了几种方法来解决这个问题,但一直遇到这个问题。也许有人可以提供帮助:
param(
[string] $pattern = ""
,[string] $replace = ""
,[string] $directory ="."
,[switch] $recurse = $false
,[switch] $caseSensitive = $false)
if($pattern -eq $null -or $pattern -eq "")
{
Write-Error "Please provide a search pattern." ; return
}
if($directory -eq $null -or $directory -eq "")
{
Write-Error "Please provide a directory." ; return
}
if($replace -eq $null -or $replace -eq "")
{
Write-Error "Please provide a string to replace." ; return
}
$regexPattern = $pattern
if($caseSensitive -eq $false) { $regexPattern = "(?i)$regexPattern" }
$regex = New-Object System.Text.RegularExpressions.Regex $regexPattern
function Write-HostAndHighlightPattern([string] $inputText)
{
$index = 0
$length = $inputText.Length
while($index -lt $length)
{
$match = $regex.Match($inputText, $index)
if($match.Success -and $match.Length -gt 0)
{
Write-Host $inputText.SubString($index, $match.Index) -nonewline
Write-Host $match.Value.ToString() -ForegroundColor Red -nonewline
$index = $match.Index + $match.Length
}
else
{
Write-Host $inputText.SubString($index) -nonewline
$index = $inputText.Length
}
}
}
Get-ChildItem $directory -recurse:$recurse |
Select-String -caseSensitive:$caseSensitive -pattern:$pattern |
foreach {
$file = ($directory + $_.FileName)
Write-Host "$($_.FileName)($($_.LineNumber)): " -nonewline
Write-HostAndHighlightPattern $_.Line
%{ Set-Content $file ((Get-Content $file) -replace ([Regex]::Escape("[$pattern]")),"[$replace]")}
Write-Host "`n"
Write-Host "Processed: $($file)"
}
问题位于最后的代码块中,就在 Get-ChildItem 调用处。当然,由于我试图解决问题然后停止,该块中的一些代码现在有点损坏,但请记住脚本那部分的意图。我想获取内容,替换单词,然后将更改后的文本保存回我从中获取的文件。
任何帮助都将不胜感激。