10 lines
185 B
Python
10 lines
185 B
Python
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)
|
|
|