in reply to Re^3: [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?
in thread [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?

Ah, I thought there would be an approach not involving ->all, which is IMO not different from just using grep /one.pl/ readdir $foo. But at least it has a nice syntax. I was hoping for something more direct there.

  • Comment on Re^4: [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?
  • Select or Download Code

Replies are listed 'Best First'.
Re^5: [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?
by Anonymous Monk on Oct 22, 2012 at 13:14 UTC
    I thought maybe ->resolve would do it but it doesn't , its just like rel2abs
    $ perl -MFile::Spec -le " print File::Spec->rel2abs( shift ) " tmp\tmp +blah\done.pl D:\tmp\tmpblah\done.pl $ perl -MPath::Class -le " print file( shift )->resolve " tmp\tmpblah\ +done.pl tmp\tmpblah\done.pl $ perl -MPath::Class -le " print file( shift )->resolve->absolute " tm +p\tmpblah\done.pl D:\tmp\tmpblah\done.pl