⑴ python怎么判断文件是否存在
正文
通常在读写文件之前,需要判断文件或目录是否存在,不然某些处理方法可能会使程序出错。所以最好在做任何操作之前,先判断文件是否存在。
这里将介绍三种判断文件或文件夹是否存在的方法,分别使用os模块、Try语句、pathlib模块。
回到顶部
1.使用os模块
os模块中的os.path.exists()方法用于检验文件是否存在。
判断文件是否存在
import osos.path.exists(test_file.txt)#Trueos.path.exists(no_exist_file.txt)#False
判断文件夹是否存在
import osos.path.exists(test_dir)#Trueos.path.exists(no_exist_dir)#False
可以看出用os.path.exists()方法,判断文件和文件夹是一样。
其实这种方法还是有个问题,假设你想检查文件“test_data”是否存在,但是当前路径下有个叫“test_data”的文件夹,这样就可能出现误判。为了避免这样的情况,可以这样:
只检查文件
import osos.path.isfile("test-data")
通过这个方法,如果文件”test-data”不存在将返回False,反之返回True。
即是文件存在,你可能还需要判断文件是否可进行读写操作。
回到顶部
判断文件是否可做读写操作
使用os.access()方法判断文件是否可进行读写操作。
语法:
os.access(path, mode)
path为文件路径,mode为操作模式,有这么几种:
os.F_OK: 检查文件是否存在;
os.R_OK: 检查文件是否可读;
os.W_OK: 检查文件是否可以写入;
os.X_OK: 检查文件是否可以执行
该方法通过判断文件路径是否存在和各种访问模式的权限返回True或者False。
import osif os.access("/file/path/foo.txt", os.F_OK): print "Given file path is exist."if os.access("/file/path/foo.txt", os.R_OK): print "File is accessible to read"if os.access("/file/path/foo.txt", os.W_OK): print "File is accessible to write"if os.access("/file/path/foo.txt", os.X_OK): print "File is accessible to execute"
回到顶部
2.使用Try语句
可以在程序中直接使用open()方法来检查文件是否存在和可读写。
语法:
open()
如果你open的文件不存在,程序会抛出错误,使用try语句来捕获这个错误。
程序无法访问文件,可能有很多原因:
如果你open的文件不存在,将抛出一个FileNotFoundError的异常;
文件存在,但是没有权限访问,会抛出一个PersmissionError的异常。
所以可以使用下面的代码来判断文件是否存在:
try: f =open() f.close()except FileNotFoundError: print "File is not found."except PersmissionError: print "You don't have permission to access this file."
其实没有必要去这么细致的处理每个异常,上面的这两个异常都是IOError的子类。所以可以将程序简化一下:
try: f =open() f.close()except IOError: print "File is not accessible."
使用try语句进行判断,处理所有异常非常简单和优雅的。而且相比其他不需要引入其他外部模块。
回到顶部
3. 使用pathlib模块
pathlib模块在Python3版本中是内建模块,但是在Python2中是需要单独安装三方模块。
使用pathlib需要先使用文件路径来创建path对象。此路径可以是文件名或目录路径。
检查路径是否存在
path = pathlib.Path("path/file")path.exist()
检查路径是否是文件
path = pathlib.Path("path/file")path.is_file()
⑵ python中如何判断目录内是文件还是文件夹
look~~>>> os.path.exists("te")True>>> os.path.exists("nothing")False>>> os.path.isfile("nothing")False>>> os.path.isdir("nothing")False>>>>>> os.path.isdir("te")False>>> os.path.isfile("te")True>>>建议抄你先判断是否存在袭,如果确实存在,你再进行判断是文件还是文件夹————————-Linux,文件夹名和同级目录的文件名是不可以同时存在的。[email protected]:~$ mkdir temkdir: cannot create directory `te': File exists[email protected]:~$ rm te[email protected]:~$ mkdir te[email protected]:~$ > te-bash: te: Is a directory
⑶ python判断是文件还是目录的注意事项
#-*-coding:utf-8-*-importos,redefstatCodeLines(path,file):ifre.match(r'.*py$',file):lines_blank=0lines_comment=0lines_total=0f=open(path+'\'+file,'r')lines=f.readlines()lines_total=len(lines)forlineinlines:pattern_blank=re.compile(r's*$')pattern_comment=re.compile(r's*#')ifpattern_blank.match(line):lines_blank+=1ifpattern_comment.match(line):lines_comment+=1f.close()print(lines_total,lines_comment,lines_blank)returnTrueelse:passdefgetFiles(path):filelist=os.listdir(path)forfileinfilelist:fpath=path+'\'+file#做判断时需要传入完整文件路径if(os.path.isfile(fpath)):statCodeLines(path,file)if(os.path.isdir(fpath)):getFiles(fpath)if__name__=='__main__':#statCodeLines('D:\Documents\VisualStudio2015\Projects\PracticeRecord\PracticeRecord','Random_string.py')getFiles('D:\Documents\VisualStudio2015\Projects\PracticeRecord\PracticeRecord')
⑷ python 判断是文件还是文件夹
假设路径为pathimport osisfile(path)#是否为文件isdir(path)#是否为文件夹exists(path)#是否存在此路径
⑸ python如何用if判断文件夹是否存在
python用if判断文件夹是否存在的方法:
python的os模块可以对文件夹进行操作。使用if语句“os.path.exists()”函数的返回值是否是True,如果是则输出该文件夹存在
示例:判断文件kk是否存在
代码如下:
执行结果如下:
更多Python知识,请关注:Python自学网!!
⑹ python 中怎样判断是不是文件
在os.path模块中有个isfile的方法,该方法可以判断是不是文件,返回True说明是文件,回返回False则不是文件,下面的英答文是摘自python文档
os.path.isfile(path)
Return True if path is an existing regular file. This follows symbolic links, so both islink() and isfile() can be true for the same path.
用法也很简单
importosfilename='/tmp/test.txt'printos.path.isfile(filename)
⑺ python 判断是文件还是目录
os.listdir("路径")列出所有文件和目录os.path.isdir(“文件名”)判断是目录吗,是返回True,不是返回Falseos.path.isfile同上判断文件
⑻ Python 中怎么判断某文件属于某个文件夹
摘要建议你先判断是否存在,如果确实存在,你再进行判断是文件还是文件夹
⑼ Python使用判断,检查是都存在1.TXT文件,如果不存在,返回文字不存在!怎么写这段代码
检查文件是否存在的方法,在Python3文件操作中经常被用到,因为,只有文件存在,我们才可以对文件进行下一步处理,那么,常用的检查文件存在的方法有哪些呢?以下是Python3检查文件是否存在的几种方法。一、 使用os库os库方法可检查文件是否存在,存在返回Ture,不存在返回False,且不需要打开文件。1. os.path.isfile文件检查import os.pathfilename='/oldboye.com/file.txt'os.path.isfile(filename)2. os.path.exists文件夹检查import osa_path='/oldboye.com/'if os.path.exists(a_path):#do something3. os.access文件权限检查import osfilename='/oldboye.com/file.txt'if os.path.isfile(filename) and os.access(filename, os.R_OK):#do something二、使用pathlib库使用pathlib库也是一种检查文件是否存在的方法,且从Python3.4开始,Python已经把pathlib加入了标准库,无需安装,即可直接使用!1. 检查文件是否存在from pathlib import Pathmy_file = Path("/oldboye.com/file.txt")if my_file.is_file():# file exists2. 检查文件夹是否存在from pathlib import Pathmy_file = Path("/oldboye.com/file.txt")if my_file.is_dir():# directory exists3. 文件或文件夹是否存在from pathlib import Pathmy_file = Path("/oldboye.com/file.txt")if my_file.exists():# path exists以上列举Python3中检查文件和文件夹的两种常用的方法,适用于Python3相关版本,其他版本略有不同,可以根据实际情况进行设置!
⑽ python 判断是一个文件还是一个文件夹
array = [1,2,3,6,5,4]for i in range(len(array)): for j in range(i): if array[j] > array[j + 1]: array[j], array[j + 1] = array[j + 1], array[j]print array