3

我有这个问题,我必须将所有文本文件中的字符串“121212”替换为其父文件夹的名称(例如,如果父文件夹名为“123456”,则字符串“121212”应替换为“123456”)

我以为我想出了如何使用以下命令来做到这一点:

PS E:\testenvironment> $parent=get-childitem -recurse | where {$_.FullName -match "[testenvironment]\\\d{6}$"} | foreach {$_.Name}
PS E:\testenvironment> $parent
123456
456789
654321
987654
PS E:\testenvironment> $files=get-childitem -recurse | where {$_.FullName -match "\\\d{6,6}\\AS400\\test3.txt$"} | foreach {$_.FullName}
PS E:\testenvironment> $files
E:\testenvironment\123456\AS400\test3.txt
E:\testenvironment\456789\as400\test3.txt
E:\testenvironment\654321\AS400\test3.txt
E:\testenvironment\987654\AS400\test3.txt
PS E:\testenvironment> foreach ($file in ($files)) {Get-Content "$file" | foreach-Object {$_ -replace "121212", "($name in ($parent))"} | set-content "$file"}

但我收到这条消息:

Set-Content : The process cannot access the file 'E:\testenvironment\123456\AS400\test3.txt' **because it is being used by another process**.
At line:1 char:127
+ foreach ($file in ($files)) {Get-Content "$file" | foreach-Object {$_ -replace "121212", "($name in ($parent))"} | set-content <<<<  "$file"}
    + CategoryInfo          : NotSpecified: (:) [Set-Content], IOException
    + FullyQualifiedErrorId : System.IO.IOException,Microsoft.PowerShell.Commands.SetContentCommand

(......我当然会为每个 test3.txt 文件收到这个......)

我无法弄清楚如何将“当前内存”放入新变量中,以便可以用新数据覆盖文件(当前位于内存中)。

4

1 回答 1

0

如果您所有的文本文件都在您发布的目录结构中,以下将完成工作:

get-childitem $testEnvPath -recurse -filter "*.txt" | foreach{
    $content = Get-Content $_.fullname 
    #To get the file's grandparent directory name ($_.fullname -split '\\')[-3]
    $content -replace "121212", ($_.fullname -split '\\')[-3] | 
    set-content $_.fullname
}

请注意,要“移动”到内存中的下一个文件/目录,这些项目的枚举必须在 foreach 语句内部,而您在外部枚举它们。

希望有帮助。

于 2012-12-08T19:18:57.457 回答