Python: Create A New Folder
作者:XD / 发表: 2021年7月7日 13:12 / 更新: 2021年7月7日 13:12 / 编程笔记 / 阅读量:1820
Create a new folder with the following Python code.
import os
output_dir = 'test'
if not os.path.isdir(output_dir):
os.mkdir(output_dir)
相关标签