如何检查是否存在某文件

如何检查是否存在某文件

通过python实现检查某文件是否存在,给出路径和文件名,有这样的函数吗?请指教,谢谢。
os.path.exists(path)
os.path.isfile(filepath)
谢谢,有没有介绍这些库函数的文档啊?
还有os.path.lexists(path)
对broken的link file也返回True.

看python的文档好了,讲得很清楚