File size: 1,186 Bytes
0069b10 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import os
import time
def get_file_size(file_path):
"""
指定されたファイルのサイズを取得する関数
"""
return os.path.getsize(file_path)
def bytes_to_gb(file_size_bytes):
"""
バイト単位のファイルサイズをGB表記に変換する関数
"""
return file_size_bytes / (1024 ** 3)
def monitor_file_size(file_path):
"""
指定されたファイルのファイルサイズをリアルタイムでGB表記で表示する関数
"""
while True:
try:
file_size_bytes = get_file_size(file_path)
file_size_gb = bytes_to_gb(file_size_bytes)
print(f"{file_path} のファイルサイズ:{file_size_gb:.2f} GB")
time.sleep(1)
except FileNotFoundError:
print("指定されたファイルが見つかりませんでした。")
break
except Exception as e:
print(f"エラーが発生しました: {e}")
break
if __name__ == "__main__":
# ファイルのパスを入力してください
file_path = input("ファイルのパスを入力してください:")
monitor_file_size(file_path)
|