If I run
then decide I want to exclude some files by adding
where exclude.some.file would already exist somewhere under c:\Testing\somesite\ it would be nice if there was a way for the copy to delete the exclude.some.file if it exists at the desination folder tree. Maybe adding a modifier to the /w ?
Code:
copy /a: /e /f /g /md /nr /s /u /v /w "ftp://www.somesite.com/*" c:\Testing\somesite\
then decide I want to exclude some files by adding
Code:
/[! exclude.some.file ]
where exclude.some.file would already exist somewhere under c:\Testing\somesite\ it would be nice if there was a way for the copy to delete the exclude.some.file if it exists at the desination folder tree. Maybe adding a modifier to the /w ?