How to search for just a specific file type in Visual Studio code?

In Visual Studio code, how do I search for just a specific file type (i.e. *.css or *.ts)?

PS: I'm talking about the global search (Ctrl+Shift+F in Windows)

I'm already using the "files to include" as a folder filter. So currently it has something like ./src/app.

66170 次浏览

单击右下角的省略号以显示“待包含的文件”字段。

可以使用“ * . filetype”指定特定类型。

E.g.

screenshot

你能做到的。

./src/app/**/*.ts

其他 globb 语法

  • *匹配路径段中的一个或多个字符
  • ?匹配路径段中的一个字符
  • **匹配任意数量的路径段,包括没有路径段
  • {}对条件(例如{ * */* . html,* */* . txt }匹配)进行分组 所有 HTML 和文本文件)
  • 声明要匹配的字符范围(例如。[0-9]到 匹配的例子。0,例子。1,...)