cjl
2023-09-26 b96b8fceafe697d326cd0071504b0dfd19a9eb14
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()) {