Page 1 of 2

Subfolder filtering

Posted: 19 Mar 2023, 17:19
by badziewiak
Hello
Please add the ability to filter full paths or subfolders and files separately. I have a lot of tiny source codes. I'd like to discard any subfolders used at compile time, and I don't want to specify new subfolders separately.

Regards

Re: Subfolder filtering

Posted: 20 Mar 2023, 11:31
by cobian
This can be done as far as I know.

Re: Subfolder filtering

Posted: 25 Mar 2023, 20:31
by badziewiak
I must be doing something wrong or it doesn't work. Can you describe how to do it?

Re: Subfolder filtering

Posted: 26 Mar 2023, 18:22
by cobian
Can you describe exactly what you want to exclude?

Re: Subfolder filtering

Posted: 31 Mar 2023, 13:07
by badziewiak
Hello
All subfolders: bin, obj incl. subfolders.

W:\MAKRA\_POLIGON\C#\ROZNE
├───AC2013+
│ ├───wstawRysunkiJakoBloki
│ ├───zawijanieRysunkuWzdluzPolilinii
│ │ └───zawijanieRysunkuWzdluzPolilinii
│ │ ├───bin
│ │ │ ├───Debug
│ │ │ └───Release
│ │ │ └───Confused
│ │ ├───obj
│ │ │ ├───Debug
│ │ │ │ └───TempPE
│ │ │ └───Release
│ │ │ └───TempPE
│ │ └───Properties
│ └───zwinRysunek
│ └───zwinRysunek
│ ├───bin
│ │ ├───Debug
│ │ └───Release
│ │ ├───Confused
│ │ └───pl-PL
│ ├───obj
│ │ ├───Debug
│ │ │ └───TempPE
│ │ └───Release
│ │ └───TempPE
│ └───Properties

Re: Subfolder filtering

Posted: 31 Mar 2023, 14:01
by cobian
But did you read the FAQ?

viewtopic.php?f=4&t=1660

Re: Subfolder filtering

Posted: 31 Mar 2023, 14:41
by badziewiak
I understand regular expressions a bit. I just don't know if there is total freedom in using them. I tried filtering the string "bin" and "obj", but they were still included. If filtering is done on whole paths, it should capture that string from the path.

Re: Subfolder filtering

Posted: 31 Mar 2023, 15:01
by cobian
They are still there but empty. This is a also a FAQ. Check "Ignore empty directories"

Re: Subfolder filtering

Posted: 01 Apr 2023, 01:00
by badziewiak
Would you add pure regular expressions to filter full paths? It will definitely help someone who knows regular expressions well. For example:

Code: Select all

(\bbin\b)|(\bobj\b)|(___Release)|(\.dll$)
It can be as a separate item on the list of options to choose from.

Re: Subfolder filtering

Posted: 01 Apr 2023, 13:35
by cobian
:OK