Get size of folder and sub-folders Ubuntu

To get the size of a folder along with all files and folders contained therein you can run the following command:

du -sh folder-name/*

Should you only want the size of the root level folder and not a summary of each folder size therein, you can run the following command:

du -sh folder-name