python

python isfile能检查文件权限吗

小樊
81
2024-12-04 14:16:02
栏目: 编程语言

os.path.isfile() 函数用于检查给定的路径是否是一个存在的文件

import os

file_path = "path/to/your/file"

if os.path.isfile(file_path):
    print("The given path is a file.")
else:
    print("The given path is not a file or does not exist.")

如果你想要检查文件的权限,可以使用 os.access() 函数。例如,要检查文件是否可读,可以这样做:

import os

file_path = "path/to/your/file"

if os.access(file_path, os.R_OK):
    print("The file is readable.")
else:
    print("The file is not readable or does not exist.")

0
看了该问题的人还看了