java.io.FileNotFoundException: (Access is denied)

JavaFilenotfoundexceptionAccess Denied

Java Problem Overview


I am trying to read the files inside a folder, but when I run the program it throws this exception. I tried with some other folders also. It throws the same exception.

Exception in thread "main" java.io.FileNotFoundException: C:\backup (Access is denied)
	at java.io.FileInputStream.open(Native Method)
	at java.io.FileInputStream.<init>(Unknown Source)

Java Solutions


Solution 1 - Java

You cannot open and read a directory, use the isFile() and isDirectory() methods to distinguish between files and folders. You can get the contents of folders using the list() and listFiles() methods (for filenames and Files respectively) you can also specify a filter that selects a subset of files listed.

Solution 2 - Java

  1. check the rsp's reply
  2. check that you have permissions to read the file
  3. check whether the file is not locked by other application. It is relevant mostly if you are on windows. for example I think that you can get the exception if you are trying to read the file while it is opened in notepad

Solution 3 - Java

Also, in some cases is important to check the target folder permissions. To give write permission for the user might be the solution. That worked for me.

Solution 4 - Java

Here's a gotcha that I just discovered - perhaps it might help someone else. If using windows the classes folder must not have encryption enabled! Tomcat doesn't seem to like that. Right click on the classes folder, select "Properties" and then click the "Advanced..." button. Make sure the "Encrypt contents to secure data" checkbox is cleared. Restart Tomcat.

It worked for me so here's hoping it helps someone else, too.

Solution 5 - Java

Check the file path properly, usually we mention the location and forget to specify the file name or the exact position where it belongs to.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohnView Question on Stackoverflow
Solution 1 - JavarspView Answer on Stackoverflow
Solution 2 - JavaAlexRView Answer on Stackoverflow
Solution 3 - JavaThales ValiasView Answer on Stackoverflow
Solution 4 - JavaRex the StrangeView Answer on Stackoverflow
Solution 5 - JavaShubham RayView Answer on Stackoverflow