我将10,000个文件从一个目录复制到另一个目录。
两个目录结构都有相同的文件;但是,尺寸可能会有所不同。
如何强制覆盖不同大小的文件并且不要复制相同大小的文件?
到目前为止,我有这个:
$source = 'D:\Test1'
$destination = 'D:\test2'
$exclude = @('*.db','test2.log')
$sourcelist = Get-ChildItem $source -exclude $exclude
foreach ($file in $sourcelist){
$result = test-path -path "$destination\*" -include $file
if ($result -like "False"){
#uncomment the next line to see the value being passed to the $file parameter
#Write-Host $file
Copy-Item "$file" -Destination "$destination"
}
}
我认为这将复制目标上不存在的文件。但是,我还想复制存在但文件大小不同的文件。
答案 0 :(得分:10)
答案 1 :(得分:-1)
我认为检查$ source list files Last Write Time Stamps然后将它与目标文件时间戳进行比较。