-
Hey All, Mac makes dupes in SMB shares (and on the local drive) using ._ before the file name to store extra info about files. Does anyone know a regex value I could add to the Exclusions list to ignore these files (or clean up the files already imported)? I've tried multiple regex combinations but can't seem to figure the right one out. Thanks for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I forgot to add that the file names have the ._ added to the beginning of the file name like this: ._08bcac66-a39e-42f4-9ae8-b31886bb9490.jpeg, ._kini_05.jpeg, ._medium.jpeg, etc. Thanks. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
.+/\._.+\.jpeg$
should work for jpegand
.+/\._.+\..+$
for all file extensionsyou can test them in stash with filter path - matches regex