NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
/ Works on Windows (Score:1)
At least on Win32 with ActiveState ActivePerl, /path/file args on its commandline; most prefer the ne
chdir('/some/where')works fine. About the only place on Win32 that / doesn't work mix-and-match with \ separators is in the File Open / Save Dialog (and a few other 16-bit hold over system calls; it depends on which file-open API a program uses whether it can acceptBill
# I had a sig when sigs were cool
use Sig;
Re:/ Works on Windows (Score:2)
Plus anytime you use File::Spec with several other modules that require a '/' path delimiter. In fact can anyone who writes module for CPAN, please remember that File::Spec and File::Find are ONLY compatible on Unix like systems. There have been several modules that have failed CPAN testing because of it.
Reply to This
Parent
Re:/ Works on Windows (Score:2)
Can you give us some examples of modules that use '/' as path seperators?
Re:/ Works on Windows (Score:2)
Say for example you use File::Find to find a list of files, you then store them in a hash as keys. Later you use File::Spec to build a file path, and verify whether the file exists in the hash. On Windows the file will never be found