📌  相关文章
📜  python 检查文件夹是否存在 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:47.178000             🧑  作者: Mango

代码示例5
import os
os.path.isdir("/home/el")  # Returns True if exist
os.path.exists("/home/el/myfile.txt")  # Return False if not exist