Commit ea55970e authored by yanzg's avatar yanzg

文件处理

parent 4cbb6ebe
......@@ -145,7 +145,6 @@ public class YzgFileServiceImpl implements YzgFileService {
// 然后再移动
for (YzgFileMoveItemReqVo item : req.getList()) {
String fullFrom = fileConfig.getServerFullPath(item.getFrom());
String fullTo = fileConfig.getServerFullPath(item.getTo());
File fileFrom = new File(fullFrom);
......@@ -162,7 +161,7 @@ public class YzgFileServiceImpl implements YzgFileService {
try {
Files.move(Paths.get(fullFrom), Paths.get(fullTo), StandardCopyOption.REPLACE_EXISTING);
} catch (Exception ex) {
throw new CodeException(String.format("移动文件 %s 到 %s 失败,错误:%s", item.getFrom(), item.getTo()), ex.getMessage());
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment