Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getParentPath (0.09 sec)

  1. guava/src/com/google/common/io/MoreFiles.java

       *     for any reason
       */
      public static void deleteRecursively(Path path, RecursiveDeleteOption... options)
          throws IOException {
        Path parentPath = getParentPath(path);
        if (parentPath == null) {
          throw new FileSystemException(path.toString(), null, "can't delete recursively");
        }
    
        Collection<IOException> exceptions = null; // created lazily if needed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top