Get File Size Python


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. def file_size_mb(filePath): return float(os.path.getsize(filePath)) / (1024 * 1024)

Report this snippet


Comments


You need to login to view comments.