Topic: FTP Delete File
A script I'm working on uploads a file via FTP and after I've done some processing, I'd like to delete that file. Is this possible with your FTP class?
You are not logged in. Please login or register.
Dropzone Forums → Dropzone Support → FTP Delete File
A script I'm working on uploads a file via FTP and after I've done some processing, I'd like to delete that file. Is this possible with your FTP class?
I would simply do:
`/bin/mv #{file} ~/.Trash/ >& /dev/null`
Where file is the file you would like to trash once you've uploaded.
Dropzone Forums → Dropzone Support → FTP Delete File