Page 1 of 1

[Solved] How to search for folders only

Posted: 07.12.2023, 10:06
by mike69290
Hello

I need to make a search only for folders,
with a folder name and non-empty condition.

How?

Thanks

Re: How to search for folders only

Posted: 07.12.2023, 21:05
by Dreamer
Use this for File name field in Search dialog:

Code: Select all

-*.*
Regarding the size or number of items, I'm not sure if it's possible.

Workaround, use column for number of items - "Items" in Details view, and Plain view - folders - Shift+Ctrl+B, then sort by Items.

Re: How to search for folders only

Posted: 07.12.2023, 21:25
by Marek
-*.*
This will find files without extension too.

I would suggest for all folders only:

Code: Select all

:D
for folders with known name

Code: Select all

:D;folder_name
After that I would export all items to container Ctrl+E.
In detail view you can see the folder size (if activated under Folder->Size of folders).

Re: How to search for folders only

Posted: 07.12.2023, 21:45
by Dreamer
Marek wrote: 07.12.2023, 21:25I would suggest for all folders only:

Code: Select all

:D
I tried this, but it was not working, not sure why, it works good now.

Re: [Solved] How to search for folders only

Posted: 12.12.2023, 14:19
by mike69290
Thank you very much :)