0

I'm getting the filenotfoundexception on my apps directory but my directory clearly exists. I'm doing this on my local machine. I'm doing a very simple post to a servlet. Does anyone knw what could be happening?

Atma
  • 29,141
  • 56
  • 198
  • 299

3 Answers3

2

it turns out this was due to my firewall (firestarter) blocking my servers ip address. I allowed the exception and everything worked.

Atma
  • 29,141
  • 56
  • 198
  • 299
1

A few of thoughts (hopefully you haven't tried them :-):

Do you have read access to the directory?

Try putting in something like:

System.out.println("the directory = " + directory);

Assuming "directory" is the File variables that holds the directory.

Try putting in something like:

System.out.println("the directory exists = " + directory.exists());

and making sure it returns true.

Josh
  • 8,082
  • 5
  • 43
  • 41
TofuBeer
  • 60,850
  • 18
  • 118
  • 163
0

Do you have traversal authority to all intervening path segments, and appropriate authority to the final file?

Lawrence Dol
  • 63,018
  • 25
  • 139
  • 189