主要用python的os模块,代码如下:
1
2
3
|
import
os
if
not
os.path.exists(
'foldername'
):
os.mkdir(
'foldername'
)
|