# In the code I sent out, I am trying to populate two arrays (originally
# this was a hash) with the filename and the corresponding url.

You may wish to try a "glob" operation instead of keeping an external
index of filenames:

  my @files = glob "http*";

Now @files will contain all filenames that match the glob expression.

That should help in the future (now that I see your follow-up post
about your out-dated file listing.

-- 

  Jonathan Daugherty
  http://www.cprogrammer.org

  "It's a book about a Spanish guy called Manual, you should read it."
                                                            -- Dilbert
_______________________________________________
PDXLUG mailing list
[EMAIL PROTECTED]
http://pdxlug.org/mailman/listinfo/pdxlug

Reply via email to