Python判断一个文件或文件夹是否存在,并创建
import os
#判断文件夹是否存在,若存在,则返回True
input: f = os.path.exists('D:/test/good')
input: f
True
input: f2 = os.path.exists('D:/test/good/no')
input: f2
Fasle
#f2为Fasle,此时可以用该命令创建文件夹
input: os.makedirs('D:/test/good/no')
input: f2_1 = os.path.exists('D:/test/good/no')
input: f2
True
#判断文件是否存在
input: f1 = os.path.exists('D:/test/good/no.txt')
input: f1
True
input: f2 = os.path.isfile('D:/test/good')
input: f2
False
input: f3 = os.path.isfile('D:/test/good/no.txt')
input: f3
True