图片文件缓存路径问题

master
anthonywj 2 years ago
parent cf5e8aa8c6
commit 0560a079d9

@ -116,7 +116,7 @@ public class uploadController {
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传文件只能是 jpg,png,doc,pdf 格式");
}
String newName = UUID.randomUUID() + fileType;//生成新文件名
String savePath = "d:/1s/udiwms/register/file/" + type;
String savePath = filePath + "/register/" + type;
File file1 = new File(savePath);
if (!file1.exists()) {// 判断目录是否存在

Loading…
Cancel
Save