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

Re: How do you list all files under a directory?

by superfrink (Curate)
on Sep 22, 2010 at 18:25 UTC ( [id://861333]=note: print w/replies, xml ) Need Help??


in reply to How do you list all files under a directory?

Here is some code to find emacs ~ files and delete them.
#!/usr/bin/perl -w use strict; use File::Finder; use Data::Dumper; # list of dirs to look in my @start_dirs = ( '/home/chad/' , ); my $finder = File::Finder # do not go into the ~chad/Archives/ directory. ->type('d')->name('Archives')->prune->comma # match the following properties. ->type('f') # files ->name('*~') # named glob(*~) ->ctime('+6') # inode changed time more than 6 days ago # ->ls() # print `ls -l` of file ; # run the finder command now. my @file_list = $finder->in(@start_dirs); # delete the found files. my $count = unlink @file_list; print "\nUnlinked $count files.\n"; exit(0);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (7)
As of 2024-04-25 11:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found