I have a folder in C:\\Folder1
C:\\Folder1
I want to copy all the contents of Folder1 to another location, D:\\Folder2
Folder1
D:\\Folder2
How do I do
@echo off :: variables echo Backing up file set /P source=Enter source folder: set /P destination=Enter Destination folder: set xcopy=xcopy /S/E/V/Q/F/H/I/N %xcopy% %source% %destination% echo files will be copy press enter to proceed pause