I have mounted a extra volume at c:\inetpub
It means I have a extra disk that was not mounted as a drive letter, but instead as a directory.
This setup allows me to increase the inetpub directory by increasing the volume size on the cloud.
Duplicacy filters don’t recognize the filters I set for inetpub. It goes like this:
# FILTERS FOR DRIVE C:
+*.conf
+.teste/
+.teste/*
+inetpub/
+inetpub/*
+Users/
-Users/*AppData*
+Users/*
-*
And I get:
PS C:\> duplicacy -d -log backup -enum-only | findstr "inetpub"
2022-12-29 09:42:37.893 TRACE SNAPSHOT_PATTERN Pattern: +inetpub/
2022-12-29 09:42:37.893 TRACE SNAPSHOT_PATTERN Pattern: +inetpub/*
2022-12-29 09:42:37.894 DEBUG PATTERN_EXCLUDE inetpub is excluded by pattern -*
2022-12-29 09:42:37.894 DEBUG PATTERN_EXCLUDE inetpub.bkp/ is excluded by pattern -*
PS C:\>
But the filter works for Users
, for instance.
Am I doing anything wrong?