Page 1 of 1

Sum of selected file size

Posted: Fri Aug 03, 2018 1:03 pm
by donotbugme
It would be nice to have the sum of the selected file size in the status bar.

Re: Sum of selected file size

Posted: Fri Aug 03, 2018 2:43 pm
by NotNull
+1

It's on th todo list for Everything 1.5 (see this thread )

Re: Sum of selected file size

Posted: Fri Aug 03, 2018 2:52 pm
by therube
Does it not do this (for you) already?
Both in total, before clicking any of the results, & then also the sum of individual items selected, once you have selected some of the results.

Code: Select all

show_size_in_statusbar=1

Re: Sum of selected file size

Posted: Fri Aug 03, 2018 3:02 pm
by NotNull
therube wrote:Does it not do this (for you) already?
Both in total, before clicking any of the results, & then also the sum of individual items selected, once you have selected some of the results.

Code: Select all

show_size_in_statusbar=1
Ah. you are right! It's on the right side of the statusbar (I only checked the left side ..)
Thanks!

In that case: -1 :lol:

Re: Sum of selected file size

Posted: Mon Aug 06, 2018 2:10 pm
by donotbugme
Thanks!
I had missed that option.
For those who wonder where it is, it is in the menu Tools, Options, General, View, Show size in status bar.

Re: Sum of selected file size

Posted: Sat Oct 20, 2018 6:13 pm
by PeterPanino
Just now I realized it is already in the status bar, on the far-right.

Re: Sum of selected file size

Posted: Fri Oct 26, 2018 2:19 pm
by rudzik23
therube wrote:Does it not do this (for you) already?
Both in total, before clicking any of the results, & then also the sum of individual items selected, once you have selected some of the results.

Code: Select all

show_size_in_statusbar=1
It would be useful to add summation functionality to selected folders.

Re: Sum of selected file size

Posted: Fri Oct 26, 2018 3:34 pm
by NotNull
rudzik23 wrote: It would be useful to add summation functionality to selected folders.
Do you have folder size indexed? (Menu:Tools > Options > Indexes : Enable Index folder size

Re: Sum of selected file size

Posted: Fri Oct 26, 2018 5:02 pm
by rudzik23
NotNull wrote:
rudzik23 wrote: It would be useful to add summation functionality to selected folders.
Do you have folder size indexed? (Menu:Tools > Options > Indexes : Enable Index folder size
This option is enabled. The size column displays the size of the folder.
I forced rebuild, but it didn't help.

Re: Sum of selected file size

Posted: Fri Oct 26, 2018 5:42 pm
by NotNull
I completely misunderstood your question!
You were talking about selecting multiple folders and showing the sum of sizes of all the selected folders.
Sorry for sending you in the wrong direction ...

Next attempt: :D
I see that same behaviour (no sum of folder sizes) and I *think* that is by design:

If you select - for example - the folders c:\test (100MB) and c:\test\subdir (50MB), it will then report a total size of 150MB, whereas it technically is just 100MB. Things get even more "wrong" when you also select a couple of files (like: c:\test\file.txt (25MB)).
I think calculating the actual total size is hard to do and would cost a lot of computing performance, especially when you select thousands of files and folders.

But that's just my theory ...

Re: Sum of selected file size

Posted: Fri Oct 26, 2018 7:45 pm
by rudzik23
NotNull wrote:You were talking about selecting multiple folders and showing the sum of sizes of all the selected folders.
Yes, I was :D
NotNull wrote:If you select - for example - the folders c:\test (100MB) and c:\test\subdir (50MB), it will then report a total size of 150MB, whereas it technically is just 100MB. Things get even more "wrong" when you also select a couple of files (like: c:\test\file.txt (25MB)).
I think calculating the actual total size is hard to do and would cost a lot of computing performance, especially when you select thousands of files and folders.

But that's just my theory ...
For me, simply adding up is enough.
Searching for the sum (unique components) for the complexity of the structure of catalogs is not necessary for me.

Simple sum of the size of the catalogs I thought would be useful when I had to add dozens of large numbers.