猿问

如何检查文件是否存在,没有例外?

如何检查文件是否存在,没有例外?

如何查看文件是否存在,而不使用try口供?



富国沪深
浏览 629回答 4
4回答

蛊毒传说

不像isfile(), exists()会回来True用于目录。因此,根据您只想要普通文件还是想要目录,您将使用isfile()或exists()..下面是一个简单的REPL输出。>>> print os.path.isfile("/etc/password.txt")True>>> print os.path.isfile("/etc")False>>> print os.path.isfile("/does/not/exist")False>>> print os.path.exists("/etc/password.txt")True>>> print os.path.exists("/etc")True>>> print os.path.exists("/does/not/exist")False

达令说

import os.pathif os.path.isfile(filepath):
随时随地看视频慕课网APP

相关分类

Python
我要回答