vote up 2 vote down star
1

I've just stumbled on a weird scenario and am wondering if anyone can explain this behaviour.

Case 1:

File base = new File("");
System.out.println(base.getAbsolutePath());
System.out.println(base.isDirectory());
System.out.println(base.canRead());

Result:

C:\workspace-sss\Commons
false
false

Case 2:

File base = new File("C:/workspace-sss/Commons");
System.out.println(base.getAbsolutePath());
System.out.println(base.isDirectory());
System.out.println(base.canRead());

Result:

C:\workspace-sss\Commons
true
true

If the absolute path of the two File objects are equal, why are they treated differently?

flag

FYI constructing the file as follows: new File("").getAbsoluteFile(); has the desired effect. – pstanton Oct 12 at 2:32
File.separatorChar. java.sun.com/j2se/1.4.2/… – Dave Jarvis Oct 12 at 2:37
separator has no effect in this case. generally speaking, "/" works whereas "\" will only work on windows. – pstanton Oct 12 at 3:11

1 Answer

vote up 4 vote down check

If you used new File("."), you should get the correct results for the current directory.

link|flag
but why ... i'm not asking how to get the desired result, but whether there's logic to the behavior. – pstanton Oct 12 at 3:12
4  
Well, because "" is not a valid file name, whereas "." is (and refers to the current directory). So, the fact that "" even partially works is, in my view, purely accidental. – Chris Jester-Young Oct 12 at 3:16
fair enough! i'd expect an exception rather than a broken object though. – pstanton Oct 13 at 6:45

Your Answer

Get an OpenID
or

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