Merge "Unlink an old file before moving the new file over it" into jb-mr1-dev

main
Ken Wakasa 2012-10-04 15:33:38 -07:00 committed by Android (Google) Code Review
commit 20f07e335d
1 changed files with 1 additions and 0 deletions

View File

@ -200,6 +200,7 @@ public final class BinaryDictionaryFileDumper {
outputStream.flush();
outputStream.close();
final File finalFile = new File(finalFileName);
finalFile.delete();
if (!outputFile.renameTo(finalFile)) {
throw new IOException("Can't move the file to its final name");
}