1 import os 2 3 # 1)创建一个一级目录 4 path = 'c:\demo' 5 6 if not os.path.exists(path): 7 os.mkdir(path) 8 print('目录创建成功') 9 else: 10 print('目录已经存在') 11 12 13 # 2)删除一个一级目录 14 path = 'c:\demo' 15 if os.path.exists(path): 16 os.rmdir(path) 17 print('目录删除成功') 18 else: 19 print('目录不存在')