Данный Python код проверяет существование файла и возможность работы с ним.
from os import path, access, R_OK # W_OK for write permission.
PATH='./file.txt'
if path.exists(PATH) and path.isfile(PATH) and access(PATH, R_OK):
print "File exists and is readable"
else:
print "Either file is missing or is not readable"
Комментариев нет:
Отправить комментарий