A common use case I have is comparing two versions of a source code repository with the goal of finding and reviewing as many differences as possible. This means my goal is to find the area(s) of the codebase with the most changes, regardless of where in the directory hierarchy those chagnes fall.
Currently the directory comparison only sorts alphabetically, which means manually scanning through the visual indicator on the righthand side for areas of high change density. There is no indicator shown for directories as far as I can tell.
It would be very useful to add a new column (or three) to the directory view showing total lines added/removed/changed. This could be computed per-file, or per-directory by defining the number of lines added in a directory as the sum of the lines added for each file within the directory.
This could be calculated recursively, which would make it possible to quickly drill into the part of the codebase with the most changes, regardless of whether a single file contains many changes, or a single directory contains many files, each with a few changes.
Some disk usage analyzer apps such as the Ubuntu app formerly known as baobab and the console app ncdu utilize this workflow.
Would anyone else be interested in a feature like this?