Get Directory Size In Ubuntu

Terminal window
du -hs /path/to/directory

To avoid recursively listing all files

Terminal window
du -h --max-depth=1 /path/to/directory

Source ↗️