is there a way to read the cumulative size of all files in a folder?
You can use the du command:
du -sh foldername
du -s folder
-s
stands for summarize.
You can also use
du -csh foldername/*
which gives file and folder sizes under "foldername" separately and the total size in last row.