I know that this method is good to check if a user has write permissions to folder:
Directory.GetAccessControl(path);
If it throws UnauthorizedAccessException
I know that the user has read permission or non permission.
How to know if a user has read permissions?
Is Directory.Exists(path)
a good enough solution?