Commit 14ea0713 authored by libin's avatar libin

修复文件上传时java.nio.file.FileAlreadyExistsException

parent 50034301
...@@ -130,14 +130,10 @@ public class FileUploadUtils ...@@ -130,14 +130,10 @@ public class FileUploadUtils
private static final File getAbsoluteFile(String uploadDir, String fileName) throws IOException private static final File getAbsoluteFile(String uploadDir, String fileName) throws IOException
{ {
File desc = new File(uploadDir + File.separator + fileName); File desc = new File(uploadDir + File.separator + fileName);
if (!desc.exists()) {
if (!desc.getParentFile().exists()) if (!desc.getParentFile().exists()) {
{ desc.getParentFile().mkdirs();
desc.getParentFile().mkdirs(); }
}
if (!desc.exists())
{
desc.createNewFile();
} }
return desc; return desc;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment