手记

python 判断文件是否存在

Python 判断文件是否存在:使用 os.path.isfile() 函数

在 Python 中,判断文件是否存在的一种简单方法是使用 os.path.isfile() 函数。该函数用于判断一个文件是否为有效文件(如文本文件、二进制文件等)。函数的参数为要判断的文件路径,返回值为布尔值,如果文件存在,则返回 True,否则返回 False

以下是一个示例,用于判断文件是否存在并输出判断结果:

def is_file(file_path):
    try:
        if os.path.isfile(file_path):
            return True
        else:
            return False
    except Exception as e:
        print(f"文件 {file_path} 存在性 错误: {e}")
        return False

file_path = "example.txt"
result = is_file(file_path)

if result:
    print(f"文件 {file_path} 存在")
else:
    print(f"文件 {file_path} 不存在")

在上面的示例中,我们定义了一个名为 is_file() 的函数,它接受一个文件路径参数。函数使用 os.path.isfile() 函数来判断文件是否存在。如果文件存在,函数返回 True,否则返回 False

接下来,我们创建一个示例,用于测试 is_file() 函数。在这个示例中,我们创建了一个名为 example.txt 的文件,并尝试判断它是否存在。如果文件存在,函数将输出 True,否则将输出 False

example_file = "example.txt"
result = is_file(example_file)

if result:
    print(f"文件 {example_file} 存在")
else:
    print(f"文件 {example_file} 不存在")

通过这段代码,你可以轻松地判断一个文件是否存在,而不需要了解文件的实际内容。

0人推荐
随时随地看视频
慕课网APP