Mounted volume ignored

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?

Typically, on Windows mount points / junction points etc. to directories, represent as a file - not as a directory - so you may need to omit the trailing slash in one of your entries. So maybe +inetpub and +inetpub/*, I’m not exactly sure, but might be part of the reason.

Almost…
when I filter:

+inetpub
+inetpub/*

I get this:

PS C:\> duplicacy -d -log backup -enum-only | findstr "inetpub"
2022-12-29 11:08:36.979 TRACE SNAPSHOT_PATTERN Pattern: +inetpub
2022-12-29 11:08:36.979 TRACE SNAPSHOT_PATTERN Pattern: +inetpub/*
2022-12-29 11:08:36.979 DEBUG PATTERN_INCLUDE inetpub is included by pattern +inetpub

But files inside C:\inetpub are not included.

Workaround was to make a new repository at c:\inetpub and backup from there

I don’t think duplicacy can resolve mount points thru filters the way I needed.