blade-service/blade-mdm/src/main/java/org/springblade/mdm/machinefile/filewatch/FileLockChecker.java
@@ -36,7 +36,7 @@ */ public static boolean isFileComplete(Path file) throws IOException, InterruptedException { long initialSize = Files.size(file); Thread.sleep(3000); // 等待1秒 Thread.sleep(1000); // 等待1秒 long currentSize = Files.size(file); return initialSize == currentSize; }