如何查找Python中是否存在目录

在Python的os模块中,有没有办法找到一个目录是否存在,如:

>>> os.direxists(os.path.join(os.getcwd()), 'new_folder')) # in pseudocode
True/False

如果你不关心它是文件还是目录,你正在寻找os.path.isdir或者os.path.exists

例:

import os
print(os.path.isdir("/home/el"))
print(os.path.exists("/home/el/myfile.txt"))

很近! 如果您传入当前存在的目录名称, os.path.isdir将返回True 。 如果它不存在或者它不是目录,则它返回False


是的,使用os.path.exists()

链接地址: http://www.djcxy.com/p/1599.html

上一篇: How to find if directory exists in Python

下一篇: Find current directory and file's directory