Replies: 1 comment 3 replies
-
@dd-eg The syntax to get all files except for |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a directory
Folder
containing files like this:I can use
GetFiles("Folder//*(dll|config)")
if I want to call out individual extensions to retrieve. However, what I REALLY want is to specifically exclude .pdb files. I am looking for something likeGetFiles("Folder//*!(pdb)")
, but every variation I have tried does not work. I know there is an overload that takesGlobeSettings
where a predicate can be used, but this will not work for my purposes (my input is only a single string).What is the expected syntax for this (or is it not supported)?
Beta Was this translation helpful? Give feedback.
All reactions