需要将目录结构保留在目标目录中,例如源目录中。
Get-ChildItem -Path $Source -Recurse -Force | Where-Object {
!$_.PSIsContainer -and
$_.LastWriteTime -lt $OldDate
} | Copy-Item -Destination $Destination -Recurse -Force -Container
仅文件被复制到$Destination
文件夹中,而没有目录结构。