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.
Back to
Why can't I use "C:\temp\foo" in DOS paths? What doesn't `C:\temp\foo.exe` work?
Forward to
Why does Perl let me delete read-only files? Why does
-i
clobber protected files? Isn't this a bug in Perl?
Up to
the perlfaq5 manpage