使用powershell将单个文件复制到具有相同名称的多个文件夹

时间:2017-02-15 20:25:41

标签: powershell

我想使用Powershell将单个文件复制到具有相同名称的多个文件夹。 例如:我想将C:\ test.html复制到D:\ App,但仅限于名称为" Config"的文件夹。在D:\ App。

里面

如何使用Powershell执行此操作?

1 个答案:

答案 0 :(得分:0)

Get-ChildItem -path D:\App -Directory -filter Config -recurse|
  ForEach{Copy-Item C:\test.html -Destination $_.FullName -whatif}

如果输出看起来没问题,请删除-whatif