mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
* make sure to resolve relative paths NativeRenameAction
This commit is contained in:
parent
bc14bf6fc0
commit
306eda5c8a
@ -2,16 +2,19 @@
|
||||
-Dapplication.deployment=msi
|
||||
-Dapplication.dir="%APPDATA%\FileBot"
|
||||
|
||||
# memory settings
|
||||
-Xmx256m
|
||||
|
||||
# proxy settings
|
||||
# -Dhttp.proxyHost=localhost
|
||||
# -Dhttp.proxyPort=8888
|
||||
|
||||
# do not use native shell for move/copy operations
|
||||
# disable analytics
|
||||
# -no-analytics
|
||||
|
||||
# use native shell for move/copy operations
|
||||
-DuseNativeShell=true
|
||||
|
||||
# memory settings
|
||||
-Xmx256m
|
||||
|
||||
# http connection timeouts
|
||||
-Dsun.net.client.defaultConnectTimeout=5000
|
||||
-Dsun.net.client.defaultReadTimeout=25000
|
||||
|
@ -6,16 +6,19 @@
|
||||
-DthreadPool=8
|
||||
-Dunixfs=false
|
||||
|
||||
# memory settings
|
||||
-Xms64m
|
||||
-Xmx512m
|
||||
# proxy settings
|
||||
# -Dhttp.proxyHost=localhost
|
||||
# -Dhttp.proxyPort=8888
|
||||
|
||||
# disable analytics
|
||||
# -no-analytics
|
||||
|
||||
# do not use native shell for move/copy operations
|
||||
-DuseNativeShell=false
|
||||
|
||||
# proxy settings
|
||||
# -Dhttp.proxyHost=localhost
|
||||
# -Dhttp.proxyPort=8888
|
||||
# memory settings
|
||||
-Xms64m
|
||||
-Xmx512m
|
||||
|
||||
# http connection timeouts
|
||||
-Dsun.net.client.defaultConnectTimeout=5000
|
||||
|
@ -3,16 +3,19 @@
|
||||
-Dapplication.dir="%EXEDIR%"
|
||||
-Duser.home="%EXEDIR%"
|
||||
|
||||
# memory settings
|
||||
-Xmx256m
|
||||
|
||||
# proxy settings
|
||||
# -Dhttp.proxyHost=localhost
|
||||
# -Dhttp.proxyPort=8888
|
||||
|
||||
# do not use native shell for move/copy operations
|
||||
# disable analytics
|
||||
# -no-analytics
|
||||
|
||||
# use native shell for move/copy operations
|
||||
-DuseNativeShell=true
|
||||
|
||||
# memory settings
|
||||
-Xmx256m
|
||||
|
||||
# http connection timeouts
|
||||
-Dsun.net.client.defaultConnectTimeout=5000
|
||||
-Dsun.net.client.defaultReadTimeout=25000
|
||||
|
@ -40,7 +40,7 @@ public enum NativeRenameAction implements RenameAction {
|
||||
int i = 0;
|
||||
for (Entry<File, File> it : map.entrySet()) {
|
||||
src[i] = it.getKey().getCanonicalPath();
|
||||
dst[i] = it.getValue().getCanonicalPath();
|
||||
dst[i] = resolveDestination(it.getKey(), it.getValue()).getCanonicalPath();
|
||||
i++;
|
||||
}
|
||||
|
||||
@ -51,7 +51,7 @@ public enum NativeRenameAction implements RenameAction {
|
||||
|
||||
op.pFrom = new WString(op.encodePaths(src));
|
||||
op.pTo = new WString(op.encodePaths(dst));
|
||||
System.out.println("NativeRenameAction.rename()");
|
||||
|
||||
Shell32.INSTANCE.SHFileOperation(op);
|
||||
|
||||
if (op.fAnyOperationsAborted) {
|
||||
|
Loading…
Reference in New Issue
Block a user