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)? ;-)

link|improve this question

Note that "case insensitive filesystem" is not equivalent to "OS is Windows", anyway. All of Windows, Linux and Mac OS can use either case-sensitive or case-insensitive filesystems; don't confuse the concepts. The "hack" would be to assert that a lowercase filename doesn't exist; create a (temporary) file with that name in uppercase, then check if the lowercase-named file exists. – Andrzej Doyle Jun 17 '10 at 22:17
feedback

4 Answers

up vote 11 down vote accepted

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|improve this answer
yeah this is the most elegant and stable solution I think... – Epaga Aug 17 '09 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 – Powerlord Aug 17 '09 at 14:23
yup basically what i did was change the list() method to a listFiles method... – Epaga Aug 17 '09 at 14:27
I don't think this answer works in the OS X case. OS X appears to use a UnixFileSystem as its FileSystem implementation regardless of whether the File is on a case sensitive or insensitive HFS+ filesystem. Therefore, File.equals(File) will return false on a case insensitive file system when filenames with differing cases are passed. Edit: just noticed @SaM said the same thing in another answer. – Dan Gravell Aug 26 '11 at 12:49
In the end I found a convoluted way of using File.exists (which does seem to obey the filesystem's case rules) was the only way. – Dan Gravell Aug 26 '11 at 13:21
feedback

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

link|improve this answer
feedback

It looks like you can use this class: http://commons.apache.org/io/api-release/org/apache/commons/io/IOCase.html

link|improve this answer
1  
Again - doesn't work for OS X very well. Just assumes case sensitive, because the file separators are forward slashes! See this discussion between the devs for more: issues.apache.org/jira/browse/IO-171 – Dan Gravell Aug 26 '11 at 12:53
feedback
boolean isFileSystemCaseSensitive = !new File( "a" ).equals( new File( "A" ) );
link|improve this answer
2  
Have just tested this on Mac OSX, default case insensitive file system and it doesn't return the expected result. – SaM Mar 8 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

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