In an upload I'm trying to include only a specific subfolder which has a depth greater than one. For example:
Remote Directory: share2/acrosync/qua/bug
Local Directory: C:/Users/JohnM/AppData
Only sync these files/dirs: /LocalLow/Microsoft
After I click Start the verbose log reports:
2014/08/28 14:13:58 Uploading C:/Users/JohnM/AppData/ to share2/acrosync/qua/bug/
2014/08/28 14:13:58 rsync command: rsync --server --modify-window=2 --out-format=%n --links --recursive -tude. . "share2/acrosync/qua/bug/"
2014/08/28 14:13:58 Uploaded 0 files; total 0 bytes, skipped 0 bytes, sent 0/0 bytes
2014/08/28 14:13:58 Uploaded C:/Users/JohnM/AppData/: up to date
If I then modify the profile by checking "Propagate deletion" and click Start again the log is:
2014/08/28 14:16:00 Uploading C:/Users/JohnM/AppData/ to share2/acrosync/qua/bug/
2014/08/28 14:16:00 rsync command: rsync --server --modify-window=2 --out-format=%n --links --recursive --delete-during -tude. . "share2/acrosync/qua/bug/"
2014/08/28 14:16:00 Add pattern: - /.acrosync/
2014/08/28 14:16:00 Add pattern: + /LocalLow
2014/08/28 14:16:00 Add pattern: + /LocalLow/Microsoft
2014/08/28 14:16:00 Add pattern: + /LocalLow/Microsoft/
2014/08/28 14:16:00 Add pattern: - /*
2014/08/28 14:16:00 Add pattern: - /LocalLow/*
2014/08/28 14:16:00 Uploaded 0 files; total 0 bytes, skipped 0 bytes, sent 0/0 bytes
2014/08/28 14:16:00 Uploaded C:/Users/JohnM/AppData/: up to date
But if I change the include spec to: /LocalLow
then run it, Acrosync uploads all the files in all the subdirs of C:/Users/JohnM/AppData/LocalLow/
And on the server the subdirs look correct:
[johnm@nas ~/share2/acrosync/qua/bug/LocalLow]$ ls -l
total 16
drwxr-xr-x 3 johnm wheel 512 Jun 29 2013 Apple Computer
drwxr-xr-x 2 johnm wheel 512 Jul 19 22:28 EmieSiteList
drwxr-xr-x 2 johnm wheel 512 Jul 19 22:28 EmieUserList
drwxr-xr-x 10 johnm wheel 512 Jan 17 2013 Microsoft
[johnm@nas ~/share2/acrosync/qua/bug/LocalLow]$
Am I doing something wrong, or is there a bug?
I'm using Acrosync 0.93 Win64 version on Windows 8.1
Comments