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?

Re: FTP Delete File

I would simply do:

`/bin/mv #{file} ~/.Trash/ >& /dev/null`

Where file is the file you would like to trash once you've uploaded.