This is how it works by design. Duplicati store every single file including its full absolute path. One of the advantages is that search queries using simple wildcards are a bit more flexible:
-
“*_DSC4230*.tif”will find all.TIF files containing_DSC4230, but also files that have this character sequence in one of its parent’s folder, likeC:\Pictures\Subfolder_DSC42301234\MyPicture.tif. - “C:\Pictures*_DSC4230.tif” will find all .TIF files named
DSC4230that are located in one of the subfolders ofC:\Pictures. -
“*\Holiday2019\????_DSC4230.tif”will find all filenames ending with_DSC4230beginning with 4 random characters, in a folder namedHoliday2019.
For even more flexibility, use a regular expression. Regex has a slightly higher learning curve, but is much more powerful. See this article for more information about the syntax.