How do exclude some of the path names are looking for?
Initial name:FB
[E-Z]:\\FB\s
Include:
FB 1
FB Cars
FB 7 Sierpień
etc.
Ignored names: Numizmatyka Listy Postcrossing Открытки and other
FB Listy
FB Postcrossing 312
FB Numizmatyka
FB Открытки
How do exclude some of the path names are looking for?
Re: How do exclude some of the path names are looking for?
I'm still learning regex.
[E-Z]:\\FB\s<!Listy !"Postcrossing 312" !Numizmatyka !Открытки>
something like this will work! (I guess)
[E-Z]:\\FB\s<!Listy !"Postcrossing 312" !Numizmatyka !Открытки>
something like this will work! (I guess)
Re: How do exclude some of the path names are looking for?
Unfortunately, this does not work for PATH name combinations.
This must include all paths with the initial name "FB" as well as exclude selected names with the initial name "FB".
include everything with the initial name "FB" (search for everything) except selected names.
This must include all paths with the initial name "FB" as well as exclude selected names with the initial name "FB".
include everything with the initial name "FB" (search for everything) except selected names.
Re: How do exclude some of the path names are looking for?
For Testing purposes, I created sample folders and ran
regex:^[E-Z]:\\FB\s
After adding exclude list
regex:^[E-Z]:\\FB\s<!Listy !"Postcrossing 312" !Numizmatyka !Открытки>
regex:^[E-Z]:\\FB\s
After adding exclude list
regex:^[E-Z]:\\FB\s<!Listy !"Postcrossing 312" !Numizmatyka !Открытки>
Re: How do exclude some of the path names are looking for?
RELULAR EXPRESSION TOTALLY INCORRECT.
See screenshot:
https://i.postimg.cc/v8zkDVQB/Screen-Sh ... -01-AM.jpg
See screenshot:
https://i.postimg.cc/v8zkDVQB/Screen-Sh ... -01-AM.jpg
-
- Posts: 24
- Joined: Thu Feb 02, 2017 9:42 pm
Re: How do exclude some of the path names are looking for?
Then perhaps write the regex yourself because it also works for me.
First of all, you do NOT even have the regex he posted above correctly typed in your screenshot, and I see NUMEROUS questions posted from you over the last couple months then accosting either this tool author who has graciously provided you this FREE tool (that you clearly are struggling to operate) or worse yet the very people trying to come to your aid and help you understand.
You posted in another thread that the author was flat out wrong about something as widely known as path lengths without clearly taking the time to read his actual answer of "the SHELL is limited....".
I just fail to understand why you would troll the void forums posting questions to then get upset and argue with every single answer (I have yet to see one you did NOT argue with).
Regex works in this case, as stated above.
First of all, you do NOT even have the regex he posted above correctly typed in your screenshot, and I see NUMEROUS questions posted from you over the last couple months then accosting either this tool author who has graciously provided you this FREE tool (that you clearly are struggling to operate) or worse yet the very people trying to come to your aid and help you understand.
You posted in another thread that the author was flat out wrong about something as widely known as path lengths without clearly taking the time to read his actual answer of "the SHELL is limited....".
I just fail to understand why you would troll the void forums posting questions to then get upset and argue with every single answer (I have yet to see one you did NOT argue with).
Regex works in this case, as stated above.
Re: How do exclude some of the path names are looking for?
@collinchaffin, Thanks for the reply.
Actually my regex is kinda wrong, as it DID exclude the mentioned folder, BUT it listed files from the excluded folder. Thats why i didn't reply (as i don't have a clue, whats wrong or how to modify the regex)
Actually my regex is kinda wrong, as it DID exclude the mentioned folder, BUT it listed files from the excluded folder. Thats why i didn't reply (as i don't have a clue, whats wrong or how to modify the regex)
Re: How do exclude some of the path names are looking for?
Please try searching for:
regex:"^[E-Z]:\\FB (?!(Listy\\|Postcrossing 312\\|Numizmatyka\\|Открытки\\))"
regex:"^[E-Z]:\\FB (?!(Listy\\|Postcrossing 312\\|Numizmatyka\\|Открытки\\))"
Re: How do exclude some of the path names are looking for?
And if you want to exclude the folders themselves:
regex:"^[E-Z]:\\FB (?!Listy(\\|$)|Postcrossing 312(\\|$)|Numizmatyka(\\|$)|Открытки(\\|$))"
regex:"^[E-Z]:\\FB (?!Listy(\\|$)|Postcrossing 312(\\|$)|Numizmatyka(\\|$)|Открытки(\\|$))"