此链接是此问题的基础。 Copy folders without files, files without folders, or everything using PowerShell
要将png图像文件从一个磁盘复制到另一个磁盘,我使用以下方法:
$sorce = "D:\"
$tday = (Get-Date).ToString('MM_dd_yy_HH_mm_ss')
$dest = "$("F:\PNG_")$($tday)"
# create destination directory
New-Item -ItemType Directory $dest -Force
# To copy only file (remove doublon be carefull):
Get-ChildItem $sorce -Filter "*.png" -Recurse -file | Copy-Item -Destination $dest -Force
如Windows 10的资源管理器那样,如何复制文件并在文件名末尾添加数字(如文件已存在)?