support brave version 1.65.133

This commit is contained in:
2024-05-24 12:19:57 +02:00
parent 14715d6bed
commit 2c8cf8692e
2 changed files with 13 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
# show file list on the dir
import os
file_list = os.listdir()
for file in file_list:
if file.endswith(".png"):
file_size = os.path.getsize(file)
print(file + ":{}".format(file_size))
if file_size < 300000:
os.remove(file)