A lot depends on your needs. If this was a throw away script, You could do something ugly like:
system('ls -Rl ~| grep ^d');
You could look at File::Find and the -d function
If you couldn't figure out File::Find, you could do something like this:
my $DIE_MSG="FATAL ERROR";
sub get_bytes_in_file_list {
my @files = @_;
my $size=0;
foreach my $file (@files) {
die "can't read $file $DIE_MSG"
if ( !-r $file );
if ( -d $file ) {
opendir( DH, $file )
or die "$! bad open directory $file $DIE_MSG\n";
my @sub_files =
map { "$file/$_"; }
grep { $_ ne '.' && $_ ne '..'; } readdir(DH);
closedir(DH) or die "$! couldn't close dir:$file\n$DIE_MSG
+";
$size += get_bytes_in_file_list(@sub_files)
if (@sub_files) # don't check empty dir;
}
else {
$size += ( stat($file) )[7];
}
}
return $size;
}
email: mandog
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|