python检查指定的文件是否存在

2022-03-11 00:00:00 指定 检查 是否存在

python检查指定的文件是否存在,代码主要通过os.path的exists方法进行判断

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python检查指定的文件是否存在
"""
import os
def file_exists(file_name):
    if os.path.exists(file_name):
        return '%s is found' % file_name
    else:
        return '%s is missing' % file_name


print(file_exists('./pidancode.com.txt'))

输出结果:
./pidancode.com.txt is found

以上代码在Python3.9环境下测试通过

相关文章