Find a file by name with regex in VSCode

Viewed 1359

I want to search for a file name in VSCode, and I'd like to be able to use Regex to filter the search results.

I've already seen answers like this Find a file by name in Visual Studio Code but unfortunately there's no obvious way to apply regex.

The search function has regex support, but only seems to look inside files, and not at the file names themselves. And there doesn't seem to be anything in settings that you can change that would support regex file searching, just including/excluding things like .gitignore.

Is there a way to search files by regex in VSCode? Do I need another tool?

1 Answers

I know this is not the same, but "Open Multiple Files" extension from Fabio Spampinato makes you open all the files corresponding to a certain glob (which basically is regex for files).

Related