Create a Demo Using Basic MS CLI/DOS Commands
(Don't use the 'XCOPY' command)
(NO BASH COMMANDS)
(Use @Echo)
Create a simple batch file to create music / pictures / movie
folders and then backup media files, like .mp3 / .jpg / .mp4 or
.mov files, into their respective folders from a common media
folder.
(No Screenshots please)
To create the batch file, create a new test.txt file on the desktop and save as the file name with a new extension from test.txt to test.bath.
right-click on test.batch file and go to edit option, write the code on the file
echo off
md music
md picture
md movies
then save the file, when you double click on a batch file then three folders created.
Now, if you want to backup media files of a list of folders, firstly decide the destination where you want to put one copy. create the batch files on the target folder and run the batch file then the backup will be done.
Create a test.txt file and rename as test.batch folder go to the edit option and type the command here,
robocopy c:\users\desktop\traget_files c:\users\backup\destination_files /e
/e means copy the subdirectory.
Get Answers For Free
Most questions answered within 1 hours.