蛊毒传说
不像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