Help for this page

Select Code to Download


  1. or download this
    use File::Spec::Functions;
    opendir (my $dh, $dir);
    ...
      push @img, $File::Find::name if /\.(jpe?g|gif|png|bmp)$/i
      && $dir eq $File::Find::dir
    }, $dir);
    
  2. or download this
    find(sub {
      push @img, $File::Find::name if /\.(jpe?g|gif|png|bmp)$/i
    }, $dir);