Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getFileSystem (0.14 seconds)

  1. guava-tests/test/com/google/common/io/MoreFilesFileTraverserTest.java

        rootDir = Jimfs.newFileSystem(Configuration.unix()).getPath("/tmp");
        Files.createDirectory(rootDir);
      }
    
      @Override
      public void tearDown() throws IOException {
        rootDir.getFileSystem().close();
      }
    
      public void testFileTraverser_emptyDirectory() throws Exception {
        assertThat(MoreFiles.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 3.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

          //      worrying about a symlink.
          return null;
        } else {
          // "foo" (working dir)
          return path.getFileSystem().getPath(".");
        }
      }
    
      /** Checks that the given options allow an insecure delete, throwing an exception if not. */
      private static void checkAllowsInsecure(Path path, RecursiveDeleteOption[] options)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:07:06 GMT 2025
    - 34.6K bytes
    - Click Count (0)
Back to Top