Help for this page

Select Code to Download


  1. or download this
    use File::Spec;
    next if $file eq File::Spec::->curdir() or $file eq File::Spec::->updi
    +r();
    
  2. or download this
    use File::Spec::Functions qw/curdir updir/;
    next if $file eq curdir() or $file eq updir();