Hi all,
I want to exclude all folders with specific names (such as .svn .bzr .metadata etc.)
and also want to exclude folders and files under them.
"Add Folder", "Add File", "Add Filter" does not meet my demand.
Can anyone tell me the way to do this ?
Thanks
-- added at 2011/12/12 13:54
I can use Exclamation mark " ! " to do this.
Can I exclude all folders with specific names?
-
- Posts: 2
- Joined: Mon Dec 12, 2011 2:52 am
Re: Can I exclude all folders with specific names?
I guess your edit means that you've got it.
In any case, I believe this should work?
The trailing \ is important (as is the "not" !).
In any case, I believe this should work?
Code: Select all
!.svn\ !.bzr\ !.metadata\
-
- Posts: 2
- Joined: Mon Dec 12, 2011 2:52 am
Re: Can I exclude all folders with specific names?
Yes, I noticed it just after I posted original message.therube wrote:I guess your edit means that you've got it.
THX for your comment.