Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getCanonicalFile (0.16 sec)

  1. android/guava/src/com/google/common/io/Files.java

       *     directories of the specified file could not be created.
       * @since 4.0
       */
      public static void createParentDirs(File file) throws IOException {
        checkNotNull(file);
        File parent = file.getCanonicalFile().getParentFile();
        if (parent == null) {
          /*
           * The given directory is a filesystem root. All zero of its ancestors exist. This doesn't
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top