support brave version 1.65.133
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user