ファイルのサイズを取得

def get_file_size(file_path):
    return os.path.getsize(file_path)

関数説明

指定したファイルのサイズをバイト単位で取得する

引数説明

ファイルパス(文字列)

返り値説明

整数(ファイルサイズ)
funky Feb. 8, 2024, 10:22 a.m.