P Pooter22 Posts: 6 +0 Jan 2, 2009 #1 I need to copy a folder from my usb harddrive to the program files folder on the c drive. I need the entire folder not just a file. Is this possible, if so, what is the correct command to do this? Thanks
I need to copy a folder from my usb harddrive to the program files folder on the c drive. I need the entire folder not just a file. Is this possible, if so, what is the correct command to do this? Thanks
K kimsland Posts: 13,806 +3 Jan 2, 2009 #2 XCopy E:\FolderName %ProgramFiles% Assuming E: is your USB Drive letter And substituting FolderName for your folder name
XCopy E:\FolderName %ProgramFiles% Assuming E: is your USB Drive letter And substituting FolderName for your folder name
P Pooter22 Posts: 6 +0 Jan 2, 2009 #3 kimsland said: XCopy E:\FolderName %ProgramFiles% Assuming E: is your USB Drive letter And substituting FolderName for your folder name Click to expand... it says xcopy is not recognised as a command
kimsland said: XCopy E:\FolderName %ProgramFiles% Assuming E: is your USB Drive letter And substituting FolderName for your folder name Click to expand... it says xcopy is not recognised as a command
K kimsland Posts: 13,806 +3 Jan 2, 2009 #4 %windir%\System32\XCopy E:\FolderName %ProgramFiles% or try: Copy E:\FolderName %ProgramFiles%
C CCT Posts: 2,610 +6 Jan 2, 2009 #5 I use a little .bat file to periodically copy all my picture files from one HD to another. Create a folder on the other drive, I used 'Backup'; @ echo off doskey cd\ dir /w pause cd\Documents and Settings\CCT\My Documents\My Pictures\ dir /w pause copy *.* d:\Backup verify pause You don't need the 'pause' entries, I just like them -
I use a little .bat file to periodically copy all my picture files from one HD to another. Create a folder on the other drive, I used 'Backup'; @ echo off doskey cd\ dir /w pause cd\Documents and Settings\CCT\My Documents\My Pictures\ dir /w pause copy *.* d:\Backup verify pause You don't need the 'pause' entries, I just like them -