Beefy Boxes and Bandwidth Generously Provided by pair Networks Frank
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: rotating files, is there a better way?

by coolmichael (Deacon)
on Apr 04, 2001 at 06:46 UTC ( [id://69569]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to rotating files, is there a better way?

TMTOWDI - I'd be tempted to use a glob like you did but with a regex. I don't think you need to really use -e
my $pre="image"; my $post="jpg"; my @files=<$pre.*.jpg>; @files=reverse sort @files; #should work because you don't have image.10.jpg #if you do have image.10.jpg, then you will need to use #image.09.jpg for example foreach (@files) { next unless m/^$pre\.(\d)\.$post$/; #just to be sure rename_and_log($_, "$pre." . ($1 >= 8 ? 9 : $1+1) . ".$post\n"); }
Sorry it's not very readable, but it should work. I think.

Update: I like merlyn's solution better.

michael
the blue haired monk

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://69569]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.