Race condition in File.mkdirs

XMLWordPrintable

    • Type: Bug
    • Resolution: Duplicate
    • Priority: P2
    • None
    • Affects Version/s: 6
    • Component/s: core-libs
    • None
    • generic
    • generic

      Apparently java.io.File.mkdirs has a race condition that causes it to fail
      if a parent directory is created by a different thread.

              if (mkdir()) {
                  return true;
              }
      // step one
              File canonFile = null;
              try {
                  canonFile = getCanonicalFile();
              } catch (IOException e) {
                  return false;
              }
              String parent = canonFile.getParent();
              return (parent != null) &&
                     (new File(parent, fs.prefixLength(parent)).mkdirs() &&
      // step two
                                          canonFile.mkdir());

      If the parent file is created between step one and step two, the method
      will fail to create the child.

            Assignee:
            Unassigned
            Reporter:
            Peter Ahe
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: