Fix try to delete file while it does not exist anymore (see #2102 and #1713) in reference to this issue (3.9)
This commit is contained in:
parent
743c035ebb
commit
b037eda614
@ -211,9 +211,10 @@ public abstract class AbstractDiskHttpData extends AbstractHttpData {
|
||||
|
||||
public void delete() {
|
||||
if (! isRenamed) {
|
||||
if (file != null) {
|
||||
if (file != null && file.exists()) {
|
||||
file.delete();
|
||||
}
|
||||
file = null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -286,6 +287,9 @@ public abstract class AbstractDiskHttpData extends AbstractHttpData {
|
||||
if (dest == null) {
|
||||
throw new NullPointerException("dest");
|
||||
}
|
||||
if (file == null) {
|
||||
throw new IOException("No file defined so cannot be renamed");
|
||||
}
|
||||
if (!file.renameTo(dest)) {
|
||||
// must copy
|
||||
FileInputStream inputStream = new FileInputStream(file);
|
||||
|
Loading…
Reference in New Issue
Block a user