Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rcapilli

    How do I do this?

    I like this idea: opendir(DIR,$directory) or die "$!"; my @pictures = grep {/\.jpg$/i} readdir DIR; close (DIR); But that only get's ".jpg" files. But I have others in there as well such as ".JPG" ".mpg" ".avi" etc... Can I add this to the code above?
  2. rcapilli

    How do I do this?

    By doing this my $picture = $query->param('Picture'); my $directory = $query->param('directory'); I get my directory and all the pictures in the Directory, but I also get "." and ".." in my $picture variable. How do I do this w/o getting the "." and ".."? I assume the $Picture variable is...

Part and Inventory Search

Back
Top