python如何确定文件是否存在
python中的os模块
os模块中的os.path.exists(path)可以检测文件或文件夹是否存在,path为文件/文件夹的名字/绝对路径。返回结果为True/False
printos.path.exists("/untitled/chapter3.py")printos.path.exists("chapter3.py")
这种用法既能检测文件也能检测文件夹,这也带来问题,假如我想找一个命名为helloworld的文件,使用exists可能命中同名的helloworld文件夹。这时使用os.path.isdir()和os.path.isfile()可以加以区分。如果进一步想判断是否可以操作文件,可以使用os.access(path,model),model为操作模式,具体如下
if__name__=='__main__':
ifos.access("/untitled/chapter3.py",os.F_OK):
print"Filepathisexist."
ifos.access("/untitled/chapter3.py",os.R_OK):
print"Fileisaccessibletoread"
ifos.access("/untitled/chapter3.py",os.W_OK):
print"Fileisaccessibletowrite"
ifos.access("/untitled/chapter3.py",os.X_OK):
print"Fileisaccessibletoexecute"
>>try语句
对文件最简单的操作方法是直接使用open()方法,但是文件不存在,或发生权限问题时open方法会报错,所以配合try语句使用来捕捉一异常。try...open语法简单优雅,可读性强,而且不需要引入任何模块
if__name__=='__main__':
try:
f=open("/untitled/chapter3.py")
f.close()
exceptIOError:
print"Fileisnotaccessible."
pathlib模块
在python2中pathlib属于第三方模块,需要单独安装。但是python3中pathlib已经是内建模块了
pathlib用法简单,与open类似。首先使用pathlib创建对象,进而使用exists(),is_file()等方法
if__name__=='__main__':
path=pathlib.Path("chapter3.py")
printpath.exists()
printpath.is_file()
以上内容为大家介绍了python培训之如何确定文件是否存在,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
更多>>python中open和with open有什么区别?
python中open和withopen有什么区别?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。一、open函数一般是使用open()和close()组合来...详情>>
2023-11-10 23:40:58python中使用_setattr_()
python中使用_setattr_()本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、setattr函数给对象的属性赋值,若属性不存在,先创建再...详情>>
2023-11-10 22:45:02python中如何使用np.delete()方法?
python中如何使用np.delete()方法?在python列表中,如果我们想要删除一个或者连续几个元素,可以使用del()方法,在numpy数组,如果想要删除元素...详情>>
2023-11-10 21:40:05python中ndarray是什么?
python中ndarray是什么?在使用python的Numpy数组,时,我们总会遇到ndarray,那ndarray是什么呢?ndarray是Numpy中的一个多维数组的数据结构,在...详情>>
2023-11-10 20:08:58热门推荐
python中open和with open有什么区别?
沸python中jsonpath模块有何用法?
热python中使用_setattr_()
热如何使用Python的telnetlib模块?
新python中如何使用np.delete()方法?
python中wordcloud库如何生成词云?
python中ndarray与list转换的方法
python中ndarray是什么?
python套接字的用法
python中如何使用@contextmanage?
Python IDE之Thonny的介绍
python如何安装OpenCV?
python如何实现信息增益和信息增益率
pythonpickle模块的使用注意