very quickly getting total size of folder
I want to quickly find the total size of any folder using python. import os from os.path import join, getsize, isfile, isdir, splitext def GetFolderSize(path): TotalSize = 0 for item in os...