jinpengyong
2023-07-12 5ebd05f0bbb5509dba3a7d5c576307b7b19adf78
screen-common/src/main/java/com/moral/util/FileUtils.java
@@ -14,7 +14,7 @@
     */
    public static boolean upload(MultipartFile file, String path, String fileName) {
        //确定上传的文件名
        String realPath = path + "\\" + fileName;
        String realPath = path + File.separator + fileName;
        File dic = new File(path);
        if (!dic.exists()) {