Help for this page

Select Code to Download


  1. or download this
    my @images = map {glob} ( '*.gif', '*.jpg', '*.jpeg' );
    
  2. or download this
    my @files = grep { -f } glob '*';
    # warning! some elements in @files might not be images.