Forum Discussion
wnjj
May 02, 2017Explorer II
xcopy (command prompt command) will do what you want.
First, make a list of the movies you watched by running a 'dir' command on the portable drive (d:\movies in my example). Make the watched.txt file in the directory on your hard drive with your movies (c:\movies in my example). Then use that .txt file as an argument to the xcopy command. Xcopy lets you exclude the files names in the .txt file from a mass copy.
1. Open a command prompt.
2. c:
3. cd \movies
4. dir /b d:\movies > watched.txt
5. xcopy *.* d:\movies /exclude: watched.txt
Remove the space between the /exclude: and watched.txt above.
Again, c:\movies is the hard drive and d:\movies is the portable drive. You can substitue 'd:\movies' in step 5 for another portable drive or you must free up the needed space after collecting the list in step 4.
https://commandwindows.com/xcopy.htm
First, make a list of the movies you watched by running a 'dir' command on the portable drive (d:\movies in my example). Make the watched.txt file in the directory on your hard drive with your movies (c:\movies in my example). Then use that .txt file as an argument to the xcopy command. Xcopy lets you exclude the files names in the .txt file from a mass copy.
1. Open a command prompt.
2. c:
3. cd \movies
4. dir /b d:\movies > watched.txt
5. xcopy *.* d:\movies /exclude: watched.txt
Remove the space between the /exclude: and watched.txt above.
Again, c:\movies is the hard drive and d:\movies is the portable drive. You can substitue 'd:\movies' in step 5 for another portable drive or you must free up the needed space after collecting the list in step 4.
https://commandwindows.com/xcopy.htm
About RV Must Haves
Have a product you cannot live without? Share it with the community!8,793 PostsLatest Activity: Aug 22, 2023