Computing.Net > Forums > Programming > batch folder copying

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.

batch folder copying

Reply to Message Icon

Name: batchlover
Date: January 14, 2008 at 12:50:48 Pacific
OS: xp 5.1.2600 sp2
CPU/Ram: pentium xeon 3.06GHz 2048
Product: dell pws450
Comment:

another problem with my batch ramblings. i am trying to copy a directory and its subdirectories and files into another directory. what happens is, it only copies the files within the directories and not the actual structure. i have tried using the /? thing to find out a way but there is none listed that does the job. here is my code :
xcopy /h /r /k /x /y /t folder1 folder2

Batch is swift.... like a ninja! Be very afraid......



Sponsored Link
Ads by Google

Response Number 1
Name: IVO
Date: January 14, 2008 at 13:37:59 Pacific
Reply:

If you want structure only

xcopy /h /r /k /x /y /t /E folder1 folder2

If you want subdirectories with files

xcopy /h /r /k /x /y /S /E folder1 folder2


0

Response Number 2
Name: batchlover
Date: January 16, 2008 at 11:48:03 Pacific
Reply:

thank you IVO, but it still only copies the contents and not the structure in either case. :( any other suggestions?

Batch is swift.... like a ninja! Be very afraid......


0

Response Number 3
Name: IVO
Date: January 16, 2008 at 12:17:39 Pacific
Reply:

xcopy /h /r /k /x /y /S /E folder1\*.* folder2



0

Response Number 4
Name: batchlover
Date: January 19, 2008 at 18:46:36 Pacific
Reply:

THANKYOU! lol

Batch is swift.... like a ninja! Be very afraid......


0
Reply to Message Icon

Related Posts

See More


Looking for online C++ tu... ISO 8583 Message Parser



Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: batch folder copying

Batch file copy and Rename www.computing.net/answers/programming/batch-file-copy-and-rename/18689.html

Batch file to copy to many folders www.computing.net/answers/programming/batch-file-to-copy-to-many-folders/16371.html

batch file to copy to many folders www.computing.net/answers/programming/batch-file-to-copy-to-many-folders/17504.html