1
3
48
336
515
106
import os, shutil os.chdir('D:/00-test') #切换工作目录 ori_path=os.getcwd() #获取当前目录 newdoc='./pic' #创建需要的目录 if os.path.exists(newdoc): print('Already exist') else: os.mkdir(newdoc) print('Creat...