jpy
2023-05-27 042ec2ba273ebbffdd3891e5c708a4b6decaf82e
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()) {