mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 00:45:06 -05:00
* enable file override if forced by user
This commit is contained in:
parent
7b5e0f00f9
commit
8a26af9e6a
@ -119,7 +119,7 @@ public class Main {
|
||||
if (args.unixfs) {
|
||||
System.setProperty("unixfs", "true");
|
||||
}
|
||||
if (args.disableAnalytics) {
|
||||
if (args.disableAnalytics || args.action.equalsIgnoreCase("test")) {
|
||||
System.setProperty("application.analytics", "false");
|
||||
}
|
||||
|
||||
|
@ -15,6 +15,7 @@ import java.io.StringWriter;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.channels.FileChannel;
|
||||
import java.nio.charset.Charset;
|
||||
import java.nio.file.StandardCopyOption;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
@ -52,7 +53,7 @@ public final class FileUtilities {
|
||||
} else {
|
||||
// move file
|
||||
try {
|
||||
java.nio.file.Files.move(source.toPath(), destination.toPath());
|
||||
java.nio.file.Files.move(source.toPath(), destination.toPath(), StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.COPY_ATTRIBUTES);
|
||||
} catch (LinkageError e) {
|
||||
org.apache.commons.io.FileUtils.moveFile(source, destination); // use "copy and delete" as fallback if standard rename fails
|
||||
}
|
||||
@ -72,7 +73,7 @@ public final class FileUtilities {
|
||||
} else {
|
||||
// copy file
|
||||
try {
|
||||
java.nio.file.Files.copy(source.toPath(), destination.toPath());
|
||||
java.nio.file.Files.copy(source.toPath(), destination.toPath(), StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.COPY_ATTRIBUTES);
|
||||
} catch (LinkageError e) {
|
||||
org.apache.commons.io.FileUtils.copyFile(source, destination);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user