I have the following code:
List<FileItem> items = uploadHandler.parseRequest(request);
for (FileItem item : items) {
if (!item.isFormField()) {
File file = new File("D:/Data");
}
}
When I am trying to save a file, I am getting the following error
java.io.FileNotFoundException: D:\Data (Access is denied.)
What could be the reason and how can I resolve this? I do have read and write permission on this folder.
for
loop. – RecrudescenceFilNotFoundException
. Where exactly does the exception being thrown and what is the code around it? – Lecithinase