os.access is much better solution to check whether directory exists and it's accesable for reading and writing.
import os
path = "/home/myFiles/directory1"
## Check if path exists
os.access(path, os.F_OK)
## Check if path is Readable
os.access(path, os.R_OK)
## Check if path i...