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 ::Ask echo Your Source Path: set INPUT1= set /P INPUT1=Type input: %=% echo Your Destination Path: set INPUT2= set /P INPUT2=Type input: %=% xcopy %INPUT1% %INPUT2% /y /s