Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6492293

Race condition in File.mkdirs

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 6
    • 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.

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: