Visual Studio 在特定文件类型和路径中查找代码

Visual Studio Code find in specific file type AND path

如何在 Visual Studio 代码中进行全局搜索 ( Search: Find in Files --> Ctrl+Shift+F in Windows )仅针对特定文件类型(例如 *.js) AND 在特定路径中(例如 ./src/app)?

我尝试在 文件中使用以下内容来包含 字段:

./src/app, *.js

但逗号分隔查询检索所有出现在 路径 ./src/app 文件类型 *.js.

你必须写一个 glob 模式:

./src/app/**/*.js

任何目录 (**) 和仅 JavaScript (*.js) 文件