Testing a UNC Path's “Accessability”

后端 未结 2 1998
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-18 19:27

My program requires access to a certain UNC path, but the path is cross-domain, so depending on the machine the program is being run on, it may or may not have default crede

相关标签:
2条回答
  • 2021-01-18 20:11

    I have never done this, but what you may be asking to do is check the Access Control List (ACL) in NTFS.

    I did a web search for c# and "Access Control List" and got a couple of hits that may be of interest to you. This may be cleaner, but it may not be easier that what you are already doing.

    0 讨论(0)
  • 2021-01-18 20:23

    Check these articles:

    • Testing File Access Rights in .NET 2.0. A handy class for testing file system permissions.
    • Vexing exceptions. Eric Lippert on why pre-emptive testing is pointless (in a nutshell: there's an implicit race condition. Between the test and the actual access, some other process may change permissions, move or delete the file, or the network could drop...etc. This means you've got to deal with exceptions thrown when you try to access the resource, so you might well structure your code to deal with the problem when it actually occurs.

    I've used code like this:

    new FileIOPermission(FileIOPermissionAccess.Read, path).Demand();
    

    which is supposed to throw a SecurityException if you don't have the desired access, but for paths on network drives or UNC paths, the FileIOPermission.Demand() method appears to be a no-op.

    0 讨论(0)
提交回复
热议问题