List size of folders and their changed date

files

How can I list the size of folders as well as their changed date?

I am able to get the size of folders using du.
I am also able to list the folders together with their date using

$ls  -ltr $path |  grep '^d'

But I cannot display the size and the date together.

ls -h or stat do not work for me.

Best Answer

On a GNU system, man du reveals --time argument:

du -h --time .

which for directories shows the time of the last modification of any file in the directory, or any of its subdirectories.

Related Question