我想从项目中排除一个特定的文件夹。让我们说: ./src/test 我不想使用
SELECT t.entry AS entry,
t.ItemLevel AS ItemLevel,
t.RequiredLevel AS RequiredLevel,
t.InventoryType AS InventoryType,
t.Quality AS Quality,
t.class AS class,
t.subclass AS subclass,
l.entry AS locale_entry,
l.name_loc8 AS name_loc8,
l.description_loc8 AS description_loc8
FROM item_template t
INNER JOIN locales_item l ON l.entry = t.entry
WHERE l.name_loc8 LIKE ?
ORDER BY t.ItemLevel DESC;
因为它排除了名称为" test"的所有文件夹。从项目。当我尝试使用文件夹路径时,我的指令将被忽略
"folder_exclude_patterns":["test"]
如何实现这种选择性排除?
答案 0 :(得分:1)
你试过这个吗?
{
"folders":
[
{
"path": "src",
"folder_exclude_patterns": ["src/test"]
}
]
}