Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    use strict;
    ...
       find(sub { $total += -s }, $dir);
       print "$dir: $total\n";
    }
    
  2. or download this
    use File::Find;
    use File::Spec;
    ...
    
       @dirs;
    }