I am working on Unix, which uses case sensitive filenames and need a way to access them in a case-insensitive manner.
Specifically, at time the program needs to get into a /images directory under a project folder. But because this directory is created manually by the user, it may sometimes be named Images, IMAGES, iMaGes...you get the idea.
Given that there is guaranteed to be only one images directory in any project folder, how can I access this directly without getting the entire directory list and looping through it?
Images,IMAGES,iMaGesat the same time with Unix. You may need a way to determine which is preferred. – Peter Lawrey Jul 12 '11 at 13:22