Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
which Cwd realpath/abs_path ... is supposed to be case preserving on win32?
realpath just calls Cwd::realpath which is Cwd::abs_path which is something sometimes ...use Path::Tiny qw/ path /; print path( 'C:/WIndowS/sySTEm32/ADvapI32.dll' )->realpath, "\n" __END__ C:/WIndowS/sySTEm32/ADvapI32.dll
which one of the Cwd what/which is supposed to be case-preserving on case insensitive filenames like on win32?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: which Cwd realpath/abs_path ... is supposed to be case preserving on win32?
by syphilis (Archbishop) on Apr 14, 2014 at 05:51 UTC |