|
@@ -21,9 +21,8 @@ import org.springframework.stereotype.Service;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
-import java.nio.file.Files;
|
|
|
-import java.nio.file.Path;
|
|
|
-import java.nio.file.Paths;
|
|
|
+import java.nio.file.*;
|
|
|
+import java.nio.file.attribute.BasicFileAttributes;
|
|
|
import java.util.List;
|
|
|
|
|
|
import static com.macro.mall.tiny.common.util.UploadUtils.*;
|
|
@@ -125,30 +124,53 @@ public class FileServiceImpl implements FileService {
|
|
|
if (!delete) {
|
|
|
Asserts.fail("您没有删除权限");
|
|
|
}
|
|
|
- if (Files.exists(filePath)) {
|
|
|
- Files.delete(filePath);
|
|
|
- } else {
|
|
|
+ if (!Files.exists(filePath)) {
|
|
|
Asserts.fail("该文件不存在");
|
|
|
}
|
|
|
int count = filePath.getNameCount();
|
|
|
- if (count < 5) {
|
|
|
+ if (count < 4) {
|
|
|
return true;
|
|
|
}
|
|
|
- String lineNameStr = filePath.getName(3).toString();
|
|
|
- String dirType = filePath.getName(4).toString();
|
|
|
+ if (Files.isDirectory(filePath)) {
|
|
|
+ Files.walkFileTree(filePath, new SimpleFileVisitor<Path>() {
|
|
|
+ @Override
|
|
|
+ public FileVisitResult visitFile(Path file, BasicFileAttributes attributes) throws IOException {
|
|
|
+ Files.delete(file); // this will work because it's always a File
|
|
|
+ return FileVisitResult.CONTINUE;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
|
|
|
+ Files.delete(dir); //this will work because Files in the directory are already deleted
|
|
|
+ return FileVisitResult.CONTINUE;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ Files.delete(filePath);
|
|
|
+ }
|
|
|
|
|
|
- if (!dirType.equals(DirectoryEnum.TOWER_PIC.getName()) && !dirType.equals(DirectoryEnum.EARTH_WIRE_HARD_PIC.getName()) && !dirType.equals(DirectoryEnum.TEAM_CHECK_PIC.getName())) {
|
|
|
- return true;
|
|
|
+ if (count > 4) {
|
|
|
+ String dirType = filePath.getName(4).toString();
|
|
|
+ if (!dirType.equals(DirectoryEnum.TOWER_PIC.getName()) && !dirType.equals(DirectoryEnum.EARTH_WIRE_HARD_PIC.getName()) && !dirType.equals(DirectoryEnum.TEAM_CHECK_PIC.getName())) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+ String lineNameStr = filePath.getName(3).toString();
|
|
|
QueryWrapper<BLine> lineQueryWrapper = new QueryWrapper<>();
|
|
|
lineQueryWrapper.lambda().eq(BLine::getName, lineNameStr);
|
|
|
BLine line = lineMapper.selectOne(lineQueryWrapper);
|
|
|
|
|
|
QueryWrapper<BTower> towerQueryWrapper = new QueryWrapper<>();
|
|
|
towerQueryWrapper.lambda().eq(BTower::getLineId, line.getId());
|
|
|
- List<BTower> towerList = towerMapper.selectList(towerQueryWrapper);
|
|
|
- towerService.setHasFile(towerList, userDetails);
|
|
|
+
|
|
|
+ if (count == 4) {
|
|
|
+ lineMapper.deleteById(line.getId());
|
|
|
+ towerMapper.delete(towerQueryWrapper);
|
|
|
+ } else {
|
|
|
+ List<BTower> towerList = towerMapper.selectList(towerQueryWrapper);
|
|
|
+ towerService.setHasFile(towerList, userDetails);
|
|
|
+ }
|
|
|
|
|
|
// 后续清楚缓存处理
|
|
|
lineCacheService.delLineList();
|