How to Make a Back Up of Files and Folders
Open command prompt and type robocopy (or xcopy if you have Windows XP) followed by the source folder (the folder you are backing up) and the destination for it. Like the command below:
robocopy C:\AS F:\ww
'C:\AS' is location of my folder which I want to backup and 'F:\ww is the destination where I want to backup.
The backup destination folder can be located on any drive - internal, external, USB, etc. The backup process is done after the command.
Now your files gets backed up. It is an effective option that you can back up your folders if you don't already have backup utility software.