Progress bar + thumbnail generator

This commit is contained in:
simon
2018-03-20 09:01:43 -04:00
parent 9d75fc4d59
commit 047d2653bc
11 changed files with 151 additions and 25 deletions

15
test_generate_big_dir.py Normal file
View File

@@ -0,0 +1,15 @@
import os
if __name__ == "__main__":
if not os.path.isdir("big_dir"):
os.mkdir("big_dir")
for i in range(100):
if not os.path.isdir("big_dir/" + str(i)):
os.mkdir("big_dir/" + str(i))
for j in range(10000):
open("big_dir/" + str(i) + "/file-" + str(j), 'a').close()