jinpengyong
2022-02-17 db8bea4570f294bc6c24a9bef966d5667c05ba55
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()) {