Hi,
Let's say we have a tree structure like that :
/ROOT
├── A
│ ├── 1
│ │ └── not_te_be_selected.json
│ └── 2
├── B
│ ├── 1
│ └── 2
└── C
├── 1
├── GOOD_SUBFOLDER
│ └── to_be_selected.json
└── 2
I'm looking for a way to search *.json files from ROOT folder, but only in subfolders that also match a pattern :
*\GOOD_*\*.json
That would return only
ROOT\C\GOOD_SUBFOLDER\to_be_selected.json
Is that somehow possible?
Regards,
Julien