
Jasmine
Administrator
Jan 26, 2001, 10:42 AM
Post #1 of 1
(1464 views)
|
|
Why doesn't glob("*.*") get all the files?
|
Can't Post
|
|
(From the Perl FAQ) Why doesn't glob("*.*") get all the files? 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 glob() portable.
|