Answers for "how to check file size in mb in python"

3

how to check the size of a file in python

import os
the_file_that_you_Want_to_check_the_size = os.path.getsize("The file Name")
print(the_file_that_you_Want_to_check_the_size)
# Your result #
Posted by: Guest on June-24-2020
0

python calculator file size to megabytes

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])
Posted by: Guest on August-22-2020

Code answers related to "how to check file size in mb in python"

Python Answers by Framework

Browse Popular Code Answers by Language