Works fine here (admittedly I’m trying the brand new 2.1.0.5, but it should behave the same).
I backed up a folder with a subfolder called sub1 initially excluded it by clicking UI (turns red).
Export As Command-line shows it (properly quoted for Windows Command Prompt) like this:
--exclude="C:\backup source\filter\sub1\\"
I make parameters-file
with that exclude
minus the stuff added for Command Prompt, so
--exclude=C:\backup source\filter\sub1\
Run it while also keeping CLI option. As expected from the help text, it tells me not to do that:
Unable to read the parameters file "C:\Duplicati\duplicati-2.1.0.5_stable_2025-03-04-win-x64-gui\RUN\parameters-file.txt", reason: Filters cannot be specified on the commandline if filters are also present in the parameter file. Use the special --replace-filter, --append-filter, or --prepend-filter options to specify filters inside the parameter file. Each filter must be prefixed with either a + or a -, and multiple filters must be joined with ;
I drop back to just using the parameters-file
without the can’t-use-both CLI option. Works fine.
Return to the CLI option to see if I can --replace-filter
it with itself. The file content now has:
--replace-filter=-C:\backup source\filter\sub1\
Works fine.
Now try to replace it with something actually different. Until now, nothing has changed in backup.
--replace-filter=-C:\backup source\filter\nope\
finally undoes my original filter, as evidenced by the first appearance of sub1
folder for Restore.
This is certainly not testing everything, but everything tested seems to be operating as expected.
EDIT 1:
Without checking GUI to see if a version was updated (none implies nothing changed), CLI says
Data uploaded: 0 bytes
until the final change where I actually did something to change filters.
EDIT 2:
Uploading file duplicati-b73888592114c429faa9b56eb130c3f07.dblock.zip (777 bytes) ...
Uploading file duplicati-ic29e79b0abf44a1a82221e5c8ef0bba0.dindex.zip (626 bytes) ...
Uploading file duplicati-20250305T005138Z.dlist.zip (1.12 KB) ...
then happens. The dlist
file has the UTC time of the backup version. Restore shows local time.
EDIT 3:
I’m going to delete that last version so I can watch a verbose log when file in sub1 goes in again.
Running commandline entry
Finished!
Listing remote folder ...
Deleting file duplicati-20250305T005138Z.dlist.zip (1.12 KB) ...
Deleting file duplicati-b73888592114c429faa9b56eb130c3f07.dblock.zip (777 bytes) ...
Deleting file duplicati-ic29e79b0abf44a1a82221e5c8ef0bba0.dindex.zip (626 bytes) ...
These filesets were deleted:
0: 3/4/2025 7:51:38 PM
Return code: 0
Use Command Prompt history to run again adding --console-lg-level=verbose
and see it say
Adding directory C:\backup source\filter\sub1\
Checking file for changes C:\backup source\filter\sub1\subfile.jpg, new: True, timestamp changed: True, size changed: True, metadatachanged: True, 12/21/2021 6:47:27 PM vs 1/1/0001 12:00:00 AM
New file C:\backup source\filter\sub1\subfile.jpg
which reminds me of what you saw (I think – feel free to check), so that’s how an added file looks.
The COMPARE command run in GUI Commandline:
Listing changes
1: 3/4/2025 7:42:57 PM
0: 3/4/2025 8:23:20 PM
Size of backup 1: 45 bytes
1 added entries:
+ C:\backup source\filter\sub1\subfile.jpg
Added files: 1
No changes found
Size of backup 0: 45 bytes
Return code: 0
Everything seems fine.