Help for this page

Select Code to Download


  1. or download this
    my @F = grep { /^\w/ and not -d "$myDir/$_" } readdir( I );
    
  2. or download this
    use Path::Tiny;
    my @files = grep !$_->is_dir, path( $myDir )->children( qr/^\w/ );