Hi,
I have a script which is downloading all the files from a folder onto my local machine. Then I want to remove everything from the remote folder. The script I have is:
    option batch on
option confirm off
open SAMBA
cd /home/ftpadriley/VehicleAudit/
lcd C:\temp\VehicleAudit\Download\
mget *.csv
rm *.csv
 
Which works up till the 
rm *.csv line. I download all the files, but they stay up there.
I also tried a 
get -delete and that didn't work either.
I have permission to delete, my connection is set up with root.
thanks for any help,
Keeghan