您可以使用os.makedirs()创建一个文件夹,
并使用os.path.exists()来查看它是否已经存在:
newpath = r'C:Program Filesarbitrary' if not os.path.exists(newpath): os.makedirs(newpath)
如果您要制作安装程序:Windows Installer会为您做很多工作。
欢迎分享,转载请注明来源:内存溢出
您可以使用os.makedirs()创建一个文件夹,
并使用os.path.exists()来查看它是否已经存在:
newpath = r'C:Program Filesarbitrary' if not os.path.exists(newpath): os.makedirs(newpath)
如果您要制作安装程序:Windows Installer会为您做很多工作。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)