vote up 4 vote down star

I have a List<String> of file names from a folder and a certain file name as String. I want to detect whether the file name is in the list, but need to respect the underlying file system's property of whether it is case-sensitive.

Is there any easy way to do this (other than the "hack" of checking System.getProperty("os.name", "").toLowerCase().indexOf("windows")!=-1)? ;-)

flag

2 Answers

vote up 11 vote down check

Don't use Strings to represent your files; use java.io.File:

http://java.sun.com/javase/6/docs/api/java/io/File.html#equals%28java.lang.Object%29

link|flag
yeah this is the most elegant and stable solution I think... – Epaga Aug 17 at 14:18
1  
As an additional note, you can get an array of files from a directory using File's listFiles() method on a File object for said directory. This can then be manipulated as an array or converted to a list using Arrays.asList – R. Bemrose Aug 17 at 14:23
yup basically what i did was change the list() method to a listFiles method... – Epaga Aug 17 at 14:27
vote up 1 vote down

Write a file named "HelloWorld"; attempt to read a file named "hELLOwORLD"?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.