vote up 0 vote down star

I run an OpenSuse server that uploads zipped source code backups to a Microsoft FTP server every night. I have written a Bash script that does this through a cron job.

I want to delete backed up files that are older than a certain date. How could I do this?

Thanks.

flag

38% accept rate
I would strongly suggest to add the date of the backup to the backup file name, especially if the FTP server is hosted by third party. If something messes up the file times, you might accidentally delete the wrong files. – Franci Penov Nov 21 '08 at 5:59
I do! This is a typical file name - factory-hotcopy-Fri-14-Nov-2008-Rev574.zip. I also calculate a md5 on the zip file that gets stored with it in an accompanying text file. – Gerhard Nov 21 '08 at 7:04

3 Answers

vote up 1 vote down check

You can delete files on the FTP server using the delete or mdelete FTP commands. I don't know of a way to select old files as a server-side operation, so one option would be to do an FTP ls to get a list of the files on the server, then parse the output to pick up those files which are older than your specified date. Then delete each one using an FTP command.

If you have a local copy of all the files then it is probably easier to generate the list of files locally using find then delete them one at a time from the server.

If you have some control over the FTP server then using rysnc instead of FTP would probably be easier.

link|flag
vote up 1 vote down

The following deletes all files under the directory tree rooted at dir whose last modification time was before November 1:

find dir -type f \! -newermt 2008-11-01 -exec rm '{}' \+

The date/time format should be ISO 8601; I don't know if other formats are accepted.

link|flag
The server I'm using doesn't seem to support the "Find" command - from the greeting, it looks like it's NcFTPd. Is this just a command the admin hasn't enabled, or is there something else I can use? – rwmnau Dec 11 '08 at 22:00
vote up 0 vote down

Unfortunately deleting old files from an FTP server is not as simple as running find . -mtime +30 -delete because usually you don’t get shell access to your FTP space. Everything must be done via FTP.

Here comes a simple perl script that does the trick:

http://www.nervous.it/2009/08/delete-old-files-from-ftp-server/

It requires the Net::FTP module.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.