Help for this page

Select Code to Download


  1. or download this
    my @files = <$dir/.* $dir/*>;
    
  2. or download this
    use File::Glob qw( bsd_glob );
    
    my @files = ( bsd_glob("$dir/.*"), bsd_glob("$dir/*") );