导语:
本文主要介绍了关于怎么用python创建文件夹的相关知识,包括pycharm自动创建文件夹,以及python在指定目录创建文件这些编程知识,希望对大家有参考作用。
Python中创建文件夹的方法:
import os
def mkdir(path):
folder = os.path.exists(path)
if not folder: #判断是否存在文件夹如果不存在则创建为文件夹
os.makedirs(path) #makedirs 创建文件时如果路径不存在会创建这个路径
print "--- new folder... ---"
print "--- OK ---"
else:
print "--- There is this folder! ---"
file = "G:\\xxoo\\test"
mkdir(file) #调用函数
os.getcwd()可以查看py文件所在路径;
import os
folder = os.getcwd()[:-4] + 'new_folder\\test\\'
#获取此py文件路径,在此路径选创建在new_folder文件夹中的test文件夹
if not os.path.exists(folder):
os.makedirs(folder)
创建txt文件
在桌面创建一个名字为 new 的txt文件
import os
file = open('C:\\Users\Administrator\\Desktop\\' + 'new' + '.txt','w')
file.close()
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python中的write方法是如何使用的?09/24
- ♥ python有什么优势09/25
- ♥ Python中的zfill()有什么用?10/01
- ♥ Python是如何实现贪心排序算法的?12/27
- ♥ python中的导入是什么08/15
- ♥ 五分钟了解 Python 中的函数12/04
内容反馈