Assuming your file source is unix...
After you have copied the files, run a remote command
The "type -f" filter will limit the results to files
find /path/to/root/file/source -type f -exec rm {}\;
find is a recursive command and it will delete EVERY file under the path you name (so don't use / or .)
After you have copied the files, run a remote command
The "type -f" filter will limit the results to files
find /path/to/root/file/source -type f -exec rm {}\;
find is a recursive command and it will delete EVERY file under the path you name (so don't use / or .)