Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    use File::Spec::Functions qw(rel2abs);
    ...
        print rel2abs($_) 
          unless $_ eq "." or $_ eq "..";
    }
    
  2. or download this
    use File::Find;
    use File::Spec::Functions qw(rel2abs);
    ...
        print $File::Find::name
          unless $_ eq "." or $_ eq "..";
    }