in reply to Re^2: Search for file ignore case
in thread Search for file ignore case

In Windows, you can use GetLongPathName in Win32.

>copy nul test.mak 1 file(s) copied. >perl -le"use Win32; print Win32::GetLongPathName('TeSt.Mak');" test.mak

Replies are listed 'Best First'.
Re^4: Search for file ignore case
by Noame (Beadle) on May 18, 2008 at 19:48 UTC
    i need it for unix :-(
      Then use of the four other solutions already provided in the thread. If you don't want to do a recursive search, then just use opendir.