Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    
  2. or download this
    use File::Find;
    
    ...
    {
        #.....
    }
    
  3. or download this
    use File::Find;
    
    ...
    {
        print if -d;
    }
    
  4. or download this
    print if -d;
    
  5. or download this
    print $_ if -d $_;
    
  6. or download this
    sub print_name_if_dir
    {
    ...
    
        print $file if -d $file;
    }
    
  7. or download this
    use File::Find;
    
    my $dir = # whatever you want the starting directory to be
    
    find(sub {print if -d}, $dir);
    
  8. or download this
    use File::Find;
    
    find(sub {print $File::Find::name if -d}, ".");
    
  9. or download this
    use File::Find;
    
    find({wanted => sub {print $File::Find::name if -d}
          no_chdir => 1}, ".");
    
  10. or download this
    #!/usr/local/bin/perl -w
    
    ...
    {
        printf "%10d %s\n", $size{$_}, $_;
    }