kongdeqiang
2024-05-16 0b6189c1c208a4f1c4cd4b230dba10b3581d1ff9
xboot-modules/xboot-file/src/main/java/cn/exrick/xboot/file/manage/impl/LocalFileManage.java
@@ -17,6 +17,7 @@
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;
import java.io.*;
/**
@@ -60,7 +61,7 @@
        if (f.exists()) {
            throw new XbootException("文件名已存在");
        }
        try {
        try{
            file.transferTo(f);
            return path + "/" + key;
        } catch (IOException e) {