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

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

代码示例1
import os.path

if os.path.exists('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")