Can we use asteriks in file paths?
For instance - I want to select only files which contains text
test_1234
abc_1234
dfg_1234
@rmunro
Contains() return bool, and I need to get text only
True but you can get all files using: Directory.GetFiles and just loop through it using a for each, if the file contains what you’re looking for then do something. Else don’t.
1 Like