How can i ignore a folder which begins with a "!"

Hey Guys,

one question how can i ignore a folder which begins with a “!”?

Example folder who should be ignored: !FB; !TW I will not remove the “!” before the folder name.

Is there are any possibility to ignore these named folders?

One way would be to make it not the first character. That is, these two lines should be equivalent to just mentioning the directory name straight up:

/!foo
/**/!foo

Possibly, escaping the exclamation mark may also work (on not-Windows at least):

\!foo
2 Likes

Thank you :smiley:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.