OzoneAsai commited on
Commit
0069b10
1 Parent(s): a745773

Upload ch.py with huggingface_hub

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