I want to open all files in a directory recursively excluding some subdirectories.
For example, I want to exclude all files under directories named "inbox" in any level.
I can specify which directories I want to include. Is there a way to specify directories I want to exclude?
For example, the following command opens all .md
files in all subdirectories:
args **/*.md
I don't want to open any file under any subdirectory called inbox
.