On Fri, Feb 27, 2009 at 12:04 PM, Emmanuel Lecharny <elecha...@apache.org> wrote: > Files are considered as different.
This makes our task somewhat harder :-) So, on OS X, if we got a directory (or file I assume) called "foo", the following will be correct, right? new File("foo").equals(new File("FOO")) => false new File("FOO").delete() => true Given a file name which might not be in the correct casing, is there a way to detect the "real" casing in HSF+? For example, what would the following return? new File("FOO").getName() new File("FOO").getAbsolutePath() new File("FOO").getCanonicalPath() new File("FOO").getPath() /niklas