使用PowerShell ISE搜索和复制文件

时间:2018-09-08 02:44:25

标签: powershell-v5.0

此链接是此问题的基础。 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的资源管理器那样,如何复制文件并在文件名末尾添加数字(如文件已存在)?

0 个答案:

没有答案