检查.dat文件是否存在使用Python的文件

时间:2015-10-23 09:59:20

标签: python python-2.7

如何检查文件是否存在,使用Python,Python有几种方法可用于检查文件是否存在,在某个目录中

我的代码:

PATH = /abc/python
fname = PATH/UP*.dat

if os.path.isfile(fname)

1 个答案:

答案 0 :(得分:4)

>>=

如果您只想要文件,可以试试这个:

os.path.exists(file)   # you cant use wildcard here
os.path.isfile(file)   # to check for is it a file or not