vote up 2 vote down star

I've encountered a bug I can't seem to find any logic behind. I have this File object, which is created like this:

File file = new File("utilities/data/someTextFile.txt");

I then do file.exists() and it returns false (!?). If the file is not found, I'm logging f.getAbsolutePath() to a file. When I look at the path, it seems OK. I can copy-paste the complete path into the "Run"-window in Windows and the file opens fine.

The file exists at all times and is not deleted nor changed during the running of my application. It is located at the local machine.

This only seems to occur in certain situations. I can reproduce the fault at any time, but I'm sure the path of the file object is not changed by the actions I make to reproduce the fault.

What can cause file.exists() to return false? Does this have something to do with permissions or file locks etc?

flag

50% accept rate
So, is it possible to read from the file even if exists() returns false? – Harry Lime May 28 at 9:24
yes, I can read from the file even if exists() returns false. – atsjoo May 28 at 9:37
Have you tried different JVMs? Different machines? Different Operating Systems? – Harry Lime May 28 at 9:47
What exactly is needed to reproduce the fault? – Carlos Heuberger May 28 at 11:05
This is inside an application which calls functions written in matlab and compiled into the java application. It seems like matlab functions which changes the "current directory" is causing the problem to appear. I am using the absolute path when creating the file object, so this shouldn't be a problem - however it seems to be. I have of course verified the absolute path of the file object, and it is correct (the same as it was before the matlab function changed the current directory). – atsjoo May 28 at 11:33
show 1 more comment

5 Answers

vote up -1 vote down

The File object is a representation of a filename or pathname, only a holder for a file path, creating it does NOT create the file in the filesystem.
The documentation of File states

An abstract representation of file and directory pathnames.

To create the file, try something like

File file = new File("utilities/data/someTextFile.txt");
if (file.createNewFile()) {
    System.out.println(file + " successfully created");
}
if (file.exists()) {
    System.out.println(file + " exists");
}

[]]

link|flag
1  
This is true, but is not what the question was about. – finnw May 28 at 11:27
I have stated that the file is installed along with the application. I am not trying to create a new file when calling new File(). I am aware of how the File class works. – atsjoo May 28 at 11:30
my fault, should have readed 2 times before answering... – Carlos Heuberger May 28 at 11:52
vote up 0 vote down

try adding a / at the start so javac wont assume it's according to the Classpath. This happens a lot when you're working in an IDE, like Netbeans and you put this on the src directory... does it help?

link|flag
vote up 0 vote down

If the situations where it fails involves running it as another user, and you're on Vista/Win7, it could be caused by VirtualStore, the mechanism where windows let an unprivileged user "write" places it normally cannot, the changes are however stored in "%USERPROFILE%\AppData\Local\VirtualStore\" which are private to each user-account.

link|flag
I'm running on windows xp x86 – atsjoo May 28 at 10:26
vote up 0 vote down

Does the same problem happen when you create the file using the absolute pathname?

File file = new File("C:\\Something\\Utilities\\data\\someTextFile.txt");

link|flag
yes, it doesn't seem to make a difference – atsjoo May 28 at 9:36
vote up 5 vote down

If the process does not have permissions to tell whether a file exists it will return false. It may be possible to open a file, but not tell by normal methods if it exists.

link|flag

Your Answer

Get an OpenID
or

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