Python Dapatkan ukuran file di MB
import os
os.path.getsize("path/to/file") / (1024*1024)
KostasX
import os
os.path.getsize("path/to/file") / (1024*1024)
import math
def convert_size(size_bytes):
if size_bytes == 0:
return "0B"
size_name = ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB")
i = int(math.floor(math.log(size_bytes, 1024)))
p = math.pow(1024, i)
s = round(size_bytes / p, 2)
return "%s %s" % (s, size_name[i])