Bạn có thể sử dụng os.access (đường dẫn, chế độ) để kiểm tra quyền và sự tồn tại của tệp với các chế độ cho quyền đọc, ghi và thực thi.
Ví dụ
>>> import os >>> os.access('my_file', os.F_OK) # Check for existence of file True >>> os.access('my_file', os.R_OK) # Check for read access True >>> os.access('my_file', os.W_OK) # Check for write access True >>> os.access('my_file', os.X_OK) # Check for execution access False