我想使用Powershell将单个文件复制到具有相同名称的多个文件夹。 例如:我想将C:\ test.html复制到D:\ App,但仅限于名称为" Config"的文件夹。在D:\ App。
里面如何使用Powershell执行此操作?
答案 0 :(得分:0)
Get-ChildItem -path D:\App -Directory -filter Config -recurse|
ForEach{Copy-Item C:\test.html -Destination $_.FullName -whatif}
如果输出看起来没问题,请删除-whatif