复制项目不会在目标文件夹中创建目录

时间:2019-06-18 12:15:40

标签: powershell copy-item

需要将目录结构保留在目标目录中,例如源目录中。

Get-ChildItem -Path $Source -Recurse -Force | Where-Object {
    !$_.PSIsContainer -and
    $_.LastWriteTime -lt $OldDate
} | Copy-Item -Destination $Destination -Recurse -Force -Container

仅文件被复制到$Destination文件夹中,而没有目录结构。

0 个答案:

没有答案