Quite simply:
File account = new File("./data/account");
account.createNewFile();
Gives me:
java.io.IOException: No such file or directory
at java.io.UnixFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:900)
...
Why Does file.createNewFile() give me a IOException with the message No such file or directory? I'm telling it to create the file.
Running this code outside of NetBeans seems to work with no problem, can NetBeans not handle relative file links?
Thanks in advance for any help!
./dataexist?