Training, Open Source
computer languages


PerlPHPPythonMySQLApache / TomcatTclRubyJavaC and C++LinuxCSS 

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Finding big files in or below a directory

Posted by admin (Graham Ellis), 17 October 2002
Here's a Perl program that reports (in size order) all big files in or below a number of directories specified on the command line.  Similar to the example that some of you may have seen on the Perl courses, but imporoved to look in hidden (dot) directories, and also improved so that it doesn't have problems with circular links

Code:
#!/usr/bin/perl
@queue = @ARGV;
while ($current = shift (@queue) ) {
       opendir DH,$current;
       @content = readdir DH;
       foreach $item (@content) {
               next if ($item =~ /^\.{1,2}$/);
               $fullname = "$current/$item";
               if (-l $fullname) { next; }
               if (-d $fullname) {
                       push @queue,$fullname;
                       next;
                       }
               if (-s $fullname > 100000) {
                       $big{$fullname} = -s $fullname;
                       }
               }
       }
foreach $item (sort {$big{$b}<=>$big{$a}} keys %big) {
       printf ("%8d %s\n",$big{$item}, $item);
       }






This page is a thread posted to the opentalk forum at www.opentalk.org.uk and archived here for reference. To jump to the archive index please follow this link.


WELL HOUSE CONSULTANTS LTD.: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho