python 中怎样判断是不是文件
1个回答
展开全部
在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.
用法也很简单
import os
filename='/tmp/test.txt'
print os.path.isfile(filename)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询