Wiztree style view?
Wiztree style view?
Is there any way Everything can show a 'Wiztree style' navigable report with the headers being something along the lines of:
folder path|Size|Item Count
folder path|Size|Item Count
Re: Wiztree style view?
Everything doesn't have any "reports".
Everything 1.4:
Enable folder size indexing under Tools -> Options -> Indexes -> Index folder size.
To show the folder name, path and size, search for:
Add the path and size column, remove any other columns.
Browse the results in Everything or export them under File -> Export.
Everything 1.5:
To show the folder path, size and item count:
Everything 1.4:
Enable folder size indexing under Tools -> Options -> Indexes -> Index folder size.
To show the folder name, path and size, search for:
Code: Select all
folder:
Browse the results in Everything or export them under File -> Export.
Everything 1.5:
To show the folder path, size and item count:
Code: Select all
folder: columns:name;path;size;descendant-count
Re: Wiztree style view?
That's perfect. Thanks for the tips
Re: Wiztree style view?
Alternative:
How?
Note:
- the screenshot shows Subfolders enabled (Folders Sidebar) and OMIT active (status bar). They are not.
How?
- Import the attached WizTree.csv filter in Everything
(go to Menu => Search => Organize Filters and press the Import button) - Activate the WizTree filter
- Browse through folders using the Folder Sidebar
Note:
- the screenshot shows Subfolders enabled (Folders Sidebar) and OMIT active (status bar). They are not.
- Attachments
-
- WizTree.csv
- (679 Bytes) Downloaded 434 times
-
Native2904
- Posts: 112
- Joined: Mon Nov 22, 2021 8:36 pm
Re: Wiztree style view?
Even though I didn't have the idea, I wanted to say that this is a great extension for Everything - thank you very much.


Re: Wiztree style view?
2NotNull
Thanks!
I have added this bookmark for this purpose and access “WizTree” via the bookmark.
Name: WizTree
Search: Custom...
Filter: WizTree
Note:
When using the bookmark, sometimes only the “Percent of Parent” column
is not always displayed in the defined column width of 6.00 cm (=178 in EV), but only in a column width of 4.50 cm (=133 in EV).
Double-clicking the column separator fixes the display error, or you can drag the column separator line slightly to the right.
_________________________
Everything 1.5.0.1404a (x64)
Monitor 24'', Scaling size 125%, resolution 1920 x 1200 pixel (native screen resolution)
Thanks!
I have added this bookmark for this purpose and access “WizTree” via the bookmark.
Name: WizTree
Search: Custom...
Code: Select all
/show-folders-sidebar
/columns [{"name":"A","width":193},{"name":"Size","width":74},{"name":"Name","width":583},{"name":"Items","width":74},{"name":"Files","width":74},{"name":"Folders","width":74},{"name":"Date Modified","width":119},{"name":"Attributes","width":74}]
/comment - https://www.voidtools.com/forum/viewtopic.php?t=17402 Wiztree style view? | https://www.voidtools.com/forum/viewtopic.php?p=80115#p80115 by NotNull » 08.02.2026Note:
When using the bookmark, sometimes only the “Percent of Parent” column
is not always displayed in the defined column width of 6.00 cm (=178 in EV), but only in a column width of 4.50 cm (=133 in EV).
Double-clicking the column separator fixes the display error, or you can drag the column separator line slightly to the right.
_________________________
Everything 1.5.0.1404a (x64)
Monitor 24'', Scaling size 125%, resolution 1920 x 1200 pixel (native screen resolution)
Last edited by tuska on Mon Feb 09, 2026 1:59 pm, edited 2 times in total.
Re: Wiztree style view?
Change:
to:
Code: Select all
/columns [{"name":"Percent of Parent","width":193},{"name":"Size","width":74},{"name":"Name","width":583},{"name":"Items","width":74},{"name":"Files","width":74},{"name":"Folders","width":74},{"name":"Date Modified","width":119},{"name":"Date Modified","width":119},{"name":"Attributes","width":74}]
Code: Select all
/columns [{"name":"A","width":193},{"name":"Size","width":74},{"name":"Name","width":583},{"name":"Items","width":74},{"name":"Files","width":74},{"name":"Folders","width":74},{"name":"Date Modified","width":119},{"name":"Date Modified","width":119},{"name":"Attributes","width":74}]
Re: Wiztree style view?
2void
Thanks!
Now the column width setting works!
{"name":"A","width":193}
instead of:
{"name":"Percent of Parent","width":193}
Thanks!
Now the column width setting works!
{"name":"A","width":193}
instead of:
{"name":"Percent of Parent","width":193}
Re: Wiztree style view?
Just a small addition:
If you open Wiztree with the bookmark and then want to restore your default view with this code and,
for example, by pressing the ALT+Y shortcut once, you need to remove the code: from the filter.
If you open Wiztree with the bookmark and then want to restore your default view with this code and,
for example, by pressing the ALT+Y shortcut once, you need to remove the code:
folders-sidebar:-
Native2904
- Posts: 112
- Joined: Mon Nov 22, 2021 8:36 pm
Re: Wiztree style view?
2Tuska
Hi, could you explain why it makes sense to create a bookmark for this filter?
As I understand it, a bookmark defines the “where”, while a filter defines the “what”.
Could you also explain a hobby user the practical benefit ?
Thx in Advance
Hi, could you explain why it makes sense to create a bookmark for this filter?
As I understand it, a bookmark defines the “where”, while a filter defines the “what”.
Could you also explain a hobby user the practical benefit ?
Thx in Advance
Re: Wiztree style view?
From one hobby user to another hobby user:
For me, a filter serves to narrow down a search [further].tuska wrote: Thu Jan 08, 2026 6:56 pm
- Column widths cannot be saved in a filter.
- Columns and column widths can be saved in a bookmark, e.g. "Alle Dateien":
Search > Custom > /columns [{“name”:‘Name’,“width”:208},...
Filter > Alle Dateien
Keyboard shortcut: your choice, e.g. ALT+Y
Re: Wiztree style view?
Instead of specifying the width of each column, you can make each column to fit with the following:
Code: Select all
/command "Result List | Size All Columns to Fit"That makes it more universal usable (I have a 34" monitor with different dpi, for example)
BTW: Date Modified width is specified twice
Code: Select all
[...],{"name":"Date Modified","width":119},{"name":"Date Modified","width":119},[...]Re: Wiztree style view?
2NotNull
Thank you for the information!
... I include it in my default view as a comment.
I do NOT want this to happen automatically, because then I would have to widen the columns again for the next search query.
I know the shortcut 'CTRL + Numpad+', as well as 'Ctrl + Shift + NumPad+' == fit the columns to the window width.
"Date Modified" (twice) ... I have corrected the bookmark in this regard and also updated the column label!
Thanks again!
Thank you for the information!
/command "Result List | Size All Columns to Fit"I do NOT want this to happen automatically, because then I would have to widen the columns again for the next search query.
I know the shortcut 'CTRL + Numpad+', as well as 'Ctrl + Shift + NumPad+' == fit the columns to the window width.
"Date Modified" (twice) ... I have corrected the bookmark in this regard and also updated the column label!
Thanks again!
-
Native2904
- Posts: 112
- Joined: Mon Nov 22, 2021 8:36 pm
Re: Wiztree style view?
2Tuska
Without all your descriptions, I wouldn’t have even half of the skills I have when it comes to Everything. Sometimes a bit tricky, but of invaluable value.
Without all your descriptions, I wouldn’t have even half of the skills I have when it comes to Everything. Sometimes a bit tricky, but of invaluable value.
Re: Wiztree style view?
Thank you, but please don't exaggerate.Native2904 wrote: Mon Feb 09, 2026 4:04 pm 2Tuska
Without all your descriptions, I wouldn’t have even half of the skills I have when it comes to Everything.
Sometimes a bit tricky, but of invaluable value.
A lot of what I'm writing about can be found in other forum posts.
I also frequently require assistance, which I receive here in the forum.
-
Native2904
- Posts: 112
- Joined: Mon Nov 22, 2021 8:36 pm
Re: Wiztree style view?
I also read along a lot. Sometimes I go through phases where I feel like I’m addicted to TC, XY, and Everything content. Studying my favorite programs is one of my favorite hobbies. I try to implement things quietly, but you (Sie) bundle and structure content in a way that everyone can understand, even without an IT background.
Just my two cents!
Just my two cents!
Re: Wiztree style view?
DAMN, THIS IS IMPRESSIVE!!!!!NotNull wrote: Sun Feb 08, 2026 3:07 pm Alternative:
2026-02-08 16_01_53-WizTree - C_ - Everything 1.5.0.1404a (x64).jpg
How?
- Import the attached WizTree.csv filter in Everything
(go to Menu => Search => Organize Filters and press the Import button)- Activate the WizTree filter
- Browse through folders using the Folder Sidebar
Note:
- the screenshot shows Subfolders enabled (Folders Sidebar) and OMIT active (status bar). They are not.
Never though that this could be done!!!!
Bravo!
Last edited by menes on Sat Feb 14, 2026 11:52 pm, edited 1 time in total.
Re: Wiztree style view?
Native2904 wrote: Sun Feb 08, 2026 3:36 pm this is a great extension for Everything - thank you very much
Thank you very much! Made my day week ..