cjl
2023-07-06 0bd7f0dee66640bab77123827cd083db4bec53a7
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()) {