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