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

Path::Class::Rule
  • Comment on Re: [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?

Replies are listed 'Best First'.
Re^2: [Windows] Given lower-cased file name, how to get actual file name (stored on filesystem) ?
by Corion (Patriarch) on Oct 22, 2012 at 12:53 UTC

    How does the linked module address the problem? I fail to see documentation for "case-correction" in its documentation, unless you intend it to be a fancy wrapper around readdir.

      Eh?
      $ md tmpblah $ echo > tmpblah\aone.pl $ echo > tmpblah\bOne.pl $ echo > tmpblah\cONe.pl $ echo > tmpblah\dONE.pl $ perl -MPath::Class::Rule -le "print for Path::Class::Rule->new->file +->iname(qr/.one.pl/)->all(q/tmpblah/) " tmpblah\aone.pl tmpblah\bOne.pl tmpblah\cONe.pl tmpblah\dONE.pl

        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.