Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Delete all but the most recent backup file

by vinoth.ree (Monsignor)
on Jan 24, 2013 at 06:01 UTC ( [id://1015080]=note: print w/replies, xml ) Need Help??


in reply to Delete all but the most recent backup file

Any ideas on if a backup has not been created in past 24hrs that the most recent backup is kept and the rest are deleted?

So you need to check, whether the backup file created within the 24 hours first, if so, then delete all the backup files which are older than 24 hours

To find the files created withing 24 hours try this,

if (1 > -M $filename) { # Your code goes here }

If any files found then do your normal delete (deletes backups that are older than 24 hours) or skip the deletion part.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1015080]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-19 11:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found