![]() |
|
go ahead... be a heretic | |
PerlMonks |
Why doesn't glob("*.*") get all the files?by faq_monk (Initiate) |
on Oct 13, 1999 at 03:42 UTC ( #818=perlfaq nodetype: print w/replies, xml ) | Need Help?? |
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
Because even on non-Unix ports, Perl's glob function follows standard Unix
globbing semantics. You'll need glob("*") to get all (non-hidden) files. This makes
|
|