How to exclude a folder that starts with'.'
Example:
.vscode
I can only use matching the entire name now
Go PATH /profile FOLDERCONTENT="dirfilter=~(.vscode|.oracle_jre_usage),nofiles,norecurse"
How to exclude a folder that starts with'.'
Example:
.vscode
I can only use matching the entire name now
Go PATH /profile FOLDERCONTENT="dirfilter=~(.vscode|.oracle_jre_usage),nofiles,norecurse"
~(.*)
should work where you currently have
~(.vscode|.oracle_jre_usage)