How to find a folder in which there is no specific file
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
How to find a folder in which there is no specific file
I have files .zip and auxiliary descr.wd3 in folders - unfortunately, .zip files have 3564 and descr.wd3 3533 how to find folders in which there are no files descr.wd3
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: How to find a folder in which there is no specific file
To find folders that contain a zip file and do not contain a descr.wd3 file, search for:
child:.zip !child:descr.wd3
child:.zip !child:descr.wd3
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
Re: How to find a folder in which there is no specific file
Many thanks, David! - that's what I meant.