Browse Source

Merge "Add IGNORE_ERRORS to FileUtils.delete()"

tags/v2.0.0.201206130900-r
Matthias Sohn 12 years ago
parent
commit
0211d91001
1 changed files with 10 additions and 3 deletions
  1. 10
    3
      org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java

+ 10
- 3
org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java View File

*/ */
public static final int SKIP_MISSING = 4; public static final int SKIP_MISSING = 4;


/**
* Option not to throw exceptions when a deletion finally doesn't succeed.
*/
public static final int IGNORE_ERRORS = 8;

/** /**
* Delete file or empty folder * Delete file or empty folder
* *
* if deletion of {@code f} fails. This may occur if {@code f} * if deletion of {@code f} fails. This may occur if {@code f}
* didn't exist when the method was called. This can therefore * didn't exist when the method was called. This can therefore
* cause IOExceptions during race conditions when multiple * cause IOExceptions during race conditions when multiple
* concurrent threads all try to delete the same file.
* concurrent threads all try to delete the same file. This
* exception is not thrown when IGNORE_ERRORS is set.
*/ */
public static void delete(final File f, int options) throws IOException { public static void delete(final File f, int options) throws IOException {
if ((options & SKIP_MISSING) != 0 && !f.exists()) if ((options & SKIP_MISSING) != 0 && !f.exists())
return; return;
} }
} }
throw new IOException(MessageFormat.format(
JGitText.get().deleteFileFailed, f.getAbsolutePath()));
if ((options & IGNORE_ERRORS) == 0)
throw new IOException(MessageFormat.format(
JGitText.get().deleteFileFailed, f.getAbsolutePath()));
} }
} }



Loading…
Cancel
Save