first commit

This commit is contained in:
mol
2023-02-04 00:14:50 +08:00
commit a2f1b6d4fd
51 changed files with 839 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import os
def reset(path):
delList = os.listdir(path)
for f in delList:
filePath = os.path.join(path, f)
if os.path.isfile(filePath):
os.remove(filePath)