1

我正在尝试将一个文件复制到具有特定名称的目录中的任何子文件夹中。我在那里的一部分,但不能完全让它工作。

我可以使用以下方法找到所有名为“帮助”的子文件夹:

Get-ChildItem -Path Y:\folder1\subfolder -Directory -Recurse | ? { ($_.PSIsContainer -eq $true) -and ($_.Name -like 'help')}

这将获得 Y:\folder1\subfolder 中名为帮助的任何文件夹。所以一直在尝试:

$folder = Get-ChildItem -Path Y:Y:\folder1\subfolder -Directory -Recurse | ? { ($_.PSIsContainer -eq $true) -and ($_.Name -like 'help')}

foreach ($f in $folder){
Copy-Item Y:\Info.html -Destination $folder[$f]
}

那是行不通的。如果您还可以告诉我如何将它写入到 csv 文件中的所有目录,则可以加分。

谢谢

4

2 回答 2

1

我用版本 3 编写了这个,但我认为它适用于 1 和 2,因为我曾经Set-StrictMode -Version <number>测试过它们。

每行的 CSV 输出将如下所示:Y:\Info.html,Y:\folder1\subfolder\help

$logpath = 'C:\log.csv'
$logopts = @{filepath=$logpath; append=$true; encoding='ascii'}

$file = 'Y:\Info.html'
$path = 'Y:\folder1\subfolder'
$search = 'help'

gci $path -d -s `
  | ?{ $_.psIsContainer -and $_.name -match $search } `
  | %{
    cp $file $_.fullName;                 # copy file
    $line = $file, $_.fullName -join ','; # build output
    $line | out-file @logopts;            # write output
  }
于 2014-02-04T01:17:43.153 回答
1

版本 1

$folders = @(
    (gci Y:\folder1\subfolder -dir -r | ? {$_.Name -like 'help'}).fullname
)

ForEach ($f in $folders) {
    Copy-Item Y:\Info.html $f
}

版本 2

(gci Y:\folder1\subfolder -dir -r | ? {$_.Name -like 'help'}).fullname | % {cp Y:\Info.html $_}
于 2014-02-03T22:07:05.383 回答