in reply to Re^2: glob operator problems
in thread glob operator problems

I would not use "\" even on windows paths it makes the pathnames "ugly" id rather use perl syntax (Perl converts it to the systems needs): e.g.: c:/my/path/ ...

Thanks
MH

Replies are listed 'Best First'.
Re^4: glob operator problems
by ikegami (Patriarch) on Jan 15, 2010 at 06:47 UTC
    You're wrong about Perl converting them. It passes paths to Windows unmodified. "/" works as a path separator because Windows accepts both "\" and "/" as path separators.