python建立文件夾

filePath = 'D:\12345'file

# 判斷文件夾是否存在,不存在則建立文件夾
if not os.path.exists(filePath):
  os.makedirs(filePath)di

相關文章
相關標籤/搜索