1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* make ACLs match target destination

This commit is contained in:
Reinhard Pointner 2014-08-05 08:52:15 +00:00
parent 0f47606ac0
commit 83463e09e3

View File

@ -1,7 +1,5 @@
package net.filebot;
import static java.util.Collections.*;
import static net.filebot.util.FileUtilities.*;
@ -17,25 +15,21 @@ import com.sun.jna.platform.win32.Shell32;
import com.sun.jna.platform.win32.ShellAPI;
import com.sun.jna.platform.win32.ShellAPI.SHFILEOPSTRUCT;
public enum NativeRenameAction implements RenameAction {
MOVE,
COPY;
MOVE, COPY;
@Override
public File rename(File src, File dst) throws IOException {
dst = resolveDestination(src, dst, false).getCanonicalFile();
rename(singletonMap(src, dst));
return dst;
}
public void rename(Map<File, File> map) throws IOException {
String[] src = new String[map.size()];
String[] dst = new String[map.size()];
// resolve paths
int i = 0;
for (Entry<File, File> it : map.entrySet()) {
@ -43,28 +37,26 @@ public enum NativeRenameAction implements RenameAction {
dst[i] = resolveDestination(it.getKey(), it.getValue(), false).getCanonicalPath();
i++;
}
callNative_Shell32(this, src, dst);
}
private static void callNative_Shell32(NativeRenameAction action, String[] src, String[] dst) {
// configure parameter structure
SHFILEOPSTRUCT op = new SHFILEOPSTRUCT();
op.wFunc = (action == MOVE) ? ShellAPI.FO_MOVE : ShellAPI.FO_COPY;
op.fFlags = Shell32.FOF_MULTIDESTFILES | Shell32.FOF_NOCONFIRMATION | Shell32.FOF_NOCONFIRMMKDIR;
op.fFlags = Shell32.FOF_MULTIDESTFILES | Shell32.FOF_NOCOPYSECURITYATTRIBS | Shell32.FOF_NOCONFIRMATION | Shell32.FOF_NOCONFIRMMKDIR;
op.pFrom = new WString(op.encodePaths(src));
op.pTo = new WString(op.encodePaths(dst));
Shell32.INSTANCE.SHFileOperation(op);
if (op.fAnyOperationsAborted) {
throw new CancellationException();
}
}
public static boolean isSupported() {
try {
return Platform.isWindows();
@ -72,5 +64,5 @@ public enum NativeRenameAction implements RenameAction {
return false;
}
}
}