查找文件夹并将内容复制到新文件夹,

时间:2020-01-14 15:38:26

标签: file directory copy location delete-file

我试图从其父目录中找到一个文件夹,然后仅将内容复制到其他文件夹,但是仅复制空文件夹,而不复制其内容。另外,在复制到新位置后,我想从原始文件夹中删除内容。

$a = (Get-ChildItem C:\ProgramData\IsolatedStorage -recurse | Where-Object {$_.PSIsContainer -eq $true -and $_.Name -match "AssemFiles"})

$b = "C:\xyz\"

Copy-Item $a –destination $b  -force

enter image description here

1 个答案:

答案 0 :(得分:0)

我找到了解决方法

$ a =((Get-ChildItem C:\ ProgramData \ IsolatedStorage -recurse | Where-Object {$ .PSIsContainer -eq $ true -and $ .Name -match“ AssemFiles”}) |选择对象全名).FullName $ b =“ c:\ xyz” 复制项目“ $ a *”-目标$ b 删除项目“ $ a *”