OzoneAsai's picture
Upload ch.py with huggingface_hub
0069b10
raw
history blame
1.19 kB
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)