yangys
2025-09-29 4c7296d45efe849dc70a3b2e2240c905481a91c9
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;
   }