python判断指定文件是否存在接口

import os

os.path.exists(file_path)
'''
文件存在返回Ture,不存在返回False
'''

你可能感兴趣的:(python整理,python)