Re: Upload all files except current date
put -delete *.zip -filemask="*<=1D" *
This downloads and deletes all zip files created more than 24 hours ago.
put -delete *.zip -filemask="*<=1D" *
If I understand your question correctly, then you have the condition otherway around.
It should be:
put *.zip -filemask="*<=1D" *
put *.zip -filemask="*<=1D" *