So I’m creating a bunch of dmgs from folders and I would love to see a feature implemented that excludes files matching either a specific or semi-specific name, for example:
// Blacklist
.DS_Store
*.png
sushi trip *.mov
Foo, Part ? of ???.*
My main issue is with .DS_Store. I keep having to sanitize (
find /folder/to/be/imaged -name ".DS_Store" -type f -print -delete
) my folders before dropping them into DropDMG. I just don’t want those buggers in my dmgs.