Forum Discussion
1492
May 02, 2017Moderator
As mentioned, it just may be quicker to just manually transfer the movie files you want?
This Windows PowerShell script may work? Not mine, and haven't personally tested, but used for a similar purpose:
Where you need to replace the path and folder to each of your 3 drives. Basically, compares video files on the 2TB HD to the WD Passport, and transfers un-watched video files from 2TB HD to a second WD Passport. Well, you asked? :E
This Windows PowerShell script may work? Not mine, and haven't personally tested, but used for a similar purpose:
$Folder1 = (Get-ChildItem -Recurse -path "E:\2TbHD")
$Folder2 = (Get-ChildItem -Recurse -path "F:\WDPassport1")
(Diff $Folder1 $Folder2 | ? {$_.SideIndicator -eq "<="}).InputObject |
ForEach-Object {
$ItemName1 = $_;
$ItemName2 = "G:\WDPassport2\" + $ItemName1;
Copy-Item $ItemName2 -Destination "G:\WDPassport2" -Force
}
Where you need to replace the path and folder to each of your 3 drives. Basically, compares video files on the 2TB HD to the WD Passport, and transfers un-watched video files from 2TB HD to a second WD Passport. Well, you asked? :E
About RV Must Haves
Have a product you cannot live without? Share it with the community!8,793 PostsLatest Activity: Aug 22, 2023