seeing the size of a directory with terminal code example
Example: terminal get folder size windows
# On PowerShell:
cd "your folder path"
ls -r | measure -sum Length
# On PowerShell:
cd "your folder path"
ls -r | measure -sum Length