Python

Python ファイルサイズを取得する

シンプルに取得できる。

サンプルコード

import os

bytes = os.path.getsize("/path/file.ext")
print(bytes)