Kaynağa Gözat

返回绝对路径

xlongwei 5 yıl önce
ebeveyn
işleme
ca04b583a9

+ 1 - 1
ruoyi-modules/ruoyi-file/src/main/java/com/ruoyi/file/utils/FileUploadUtils.java

@@ -110,7 +110,7 @@ public class FileUploadUtils
110
                 desc.getParentFile().mkdirs();
110
                 desc.getParentFile().mkdirs();
111
             }
111
             }
112
         }
112
         }
113
-        return desc;
113
+        return desc.isAbsolute() ? desc : desc.getAbsoluteFile();
114
     }
114
     }
115
 
115
 
116
     private static final String getPathFileName(String fileName) throws IOException
116
     private static final String getPathFileName(String fileName) throws IOException