คุณสามารถใช้ os.access(path, mode) เพื่อตรวจสอบสิทธิ์ของไฟล์และการมีอยู่ของไฟล์ด้วยโหมดสำหรับการอนุญาตการอ่าน เขียน และดำเนินการ
ตัวอย่าง
>>> 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