7 lines
91 B
Python
7 lines
91 B
Python
import os
|
|
|
|
|
|
def prepare():
|
|
if not os.path.exists('./temp'):
|
|
os.mkdir('./temp')
|