Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for postVisitDirectory (0.11 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                    logger.warn("I/O exception on {}", file, e);
                }
                return FileVisitResult.CONTINUE;
            }
    
            @Override
            public FileVisitResult postVisitDirectory(final Path dir, final IOException e) throws IOException {
                if (e != null) {
                    logger.warn("I/O exception on {}", dir, e);
                }
                deleteEmptyDirectory(dir);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

                            }
                            return FileVisitResult.CONTINUE;
                        }
    
                        @Override
                        public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
                            if (!dir.toFile().delete()) {
                                errorPaths.add(dir.toFile().getCanonicalPath());
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top