command line size of directory

C++
# show all folder size in the current directory
du -h --max-depth=1du -sh /var# The -s flag will insure that each specific entry is calculated, 
# and the -h flag will make the output in human readable size format
du -sh /directory/path
Source

Also in C++: