Hey shypike,
Correct me if I'm wrong but I think /E by itself is equivalent to using /E /S together.
Search found 2 matches
- September 1st, 2012, 4:27 pm
- Forum: Post-Processing Scripts
- Topic: [WINDOWS] How do I create a basic script?
- Replies: 7
- Views: 4197
- September 1st, 2012, 3:35 pm
- Forum: Post-Processing Scripts
- Topic: [WINDOWS] How do I create a basic script?
- Replies: 7
- Views: 4197
Re: [WINDOWS] How do I create a basic script?
Try this:
@echo on
C:
cd \Documents and Settings\Administrator\My Documents\Downloads\complete
XCOPY * /E /Y /C D:\movies\
DEL /S /Q *
RMDIR /S /Q .
See if that works. Should copy all the contents and then delete the files and subdirectories in your complete folder.
@echo on
C:
cd \Documents and Settings\Administrator\My Documents\Downloads\complete
XCOPY * /E /Y /C D:\movies\
DEL /S /Q *
RMDIR /S /Q .
See if that works. Should copy all the contents and then delete the files and subdirectories in your complete folder.