Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: move files to directories based on criteria

by ikegami (Patriarch)
on Jul 10, 2009 at 19:05 UTC ( [id://779011]=note: print w/replies, xml ) Need Help??


in reply to move files to directories based on criteria

return if $File::Find::dir ne $root_dir;

You're traversing an entire tree even though you ignore all results from subdirectories. Very wasteful! I think the solution is:

sub wanted { my ($file)=$_; if (-d $file) { $File::Find::prune = 1; return; } my $dir_to_make = categorize($file); File::Path::make_path($dir_to_make); File::Copy::move($file, $dir_to_make); }

Error checking would be useful.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-19 17:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found