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

如何查找Python中是否存在目录,第1张

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

您正在寻找

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5648566.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存