Skip to content

Commit

Permalink
Add desktop.ini to filter list
Browse files Browse the repository at this point in the history
  • Loading branch information
glubsy committed Sep 4, 2020
1 parent a55e02b commit 424d34a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/exclude.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
import time

default_regexes = [r"^thumbs\.db$", # Obsolete after WindowsXP
r"^desktop\.ini$", # Windows metadata
r"^\.DS_Store$", # MacOS metadata
r"^\.Trash\-.*", # Linux trash directories
r"^\$Recycle\.Bin$", # Windows
r"^\..*" # Hidden files
r"^\..*", # Hidden files
]
# These are too broad
forbidden_regexes = [r".*", r"\/.*", r".*\/.*", r".*\..*"]
Expand Down

0 comments on commit 424d34a

Please sign in to comment.