您正在寻找os.path.isdir
,或者os.path.exists
不管它是文件还是目录:
>>> import os>>> os.path.isdir('new_folder')True>>> os.path.exists(os.path.join(os.getcwd(), 'new_folder', 'file.txt'))False
另外,您可以使用 pathlib
:
>>> from pathlib import Path >>> Path('new_folder').is_dir() True >>> (Path.cwd() / 'new_folder' / 'file.txt').exists() False
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)