代码提交

This commit is contained in:
wanxiaoli 2025-05-24 13:57:38 +08:00
parent 19e7240853
commit ba9f7c893b

View File

@ -967,7 +967,7 @@ public class NodesServiceImpl extends ServiceImpl<NodesMapper, Nodes> implements
//构建要解压的zip文件路径 例如 D:\yun\temporary\111.zip //构建要解压的zip文件路径 例如 D:\yun\temporary\111.zip
Path zipFilePath = Paths.get(storageSourceConfig.getValue(), decompressionPath, fileName); Path zipFilePath = Paths.get(storageSourceConfig.getValue(), decompressionPath, fileName);
// 4. 构建解压目标路径 例如 D:\yun\temporary\111 // 4. 构建解压目标路径 例如 D:\yun\temporary\111
Path destRoot = Paths.get(storageSourceConfig.getValue(), decompressionPath, zipName); Path destRoot = Paths.get(storageSourceConfig.getValue(), decompressionPath);
LOGGER.info("要解压文件路径:{}", zipFilePath); LOGGER.info("要解压文件路径:{}", zipFilePath);
LOGGER.info("解压以后文件路径:{}", destRoot); LOGGER.info("解压以后文件路径:{}", destRoot);