VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > 简明python教程 >
  • python创建文件夹

import os

filePath = 'D:\12345'

# 判断文件夹是否存在,不存在则创建文件夹
if not os.path.exists(filePath):
  os.makedirs(filePath)


相关教程