Hi!
I'd like to use regular expressions and search for folders without a particular file/folder.
So let's say I want to look up all of my folders that doesn't have the file or folder called "Text", it'd return a list of folders without "Text".
I am not good at using regular expressions, so if anyone can help me, I'd be very grateful. Thank you
Search for folders that doesn't have a particular file/folder?
Re: Search for folders that doesn't have a particular file/folder?
Code: Select all
!TextRe: Search for folders that doesn't have a particular file/folder?
Sorry for making you misunderstand me
I don't want to exclude files and folders with "text" in the filename.
I want to exclude folders that have files and folders with "text" in the filename.
I don't want to exclude files and folders with "text" in the filename.
I want to exclude folders that have files and folders with "text" in the filename.
Re: Search for folders that doesn't have a particular file/folder?
Sorry, my mistake.thorodin wrote: Mon Mar 25, 2019 11:52 pm Sorry for making you misunderstand me
I don't want to exclude files and folders with "text" in the filename.
I want to exclude folders that have files and folders with "text" in the filename.
This (might) work
Code: Select all
!child:TextRe: Search for folders that doesn't have a particular file/folder?
Awesome, it worked. Thank you so much.
Is it possible to make it exclude files with the phrase "text" or "orange"?
Is it possible to make it exclude files with the phrase "text" or "orange"?
Re: Search for folders that doesn't have a particular file/folder?
thorodin wrote: Tue Mar 26, 2019 12:24 am Awesome, it worked. Thank you so much.
Is it possible to make it exclude files with the phrase "text" or "orange"?
Code: Select all
!child:text|!child:orangeCode: Select all
!child:text|orange