| Determine folder size including sub folders |
|
You can use du command to see the folder size in LINUX including subfolders.:
du -h # including subfolders (-h means human readable format in MB, GB or TB)
du -h --max-depth=1
du -sh /home/someforlder
Where -h stands for human-readable & -s is to summerize the results. |