How we can add write access to a directory programmatically in C#?
I have an ASP.NET page that creates dire开发者_运维知识库ctories, and in another page I upload some files in these folders, but when I upload a file in a directory, the below error appears:
Access to the path 'my path' is denied.
Your code is running under a user account that does not have write access to the specified directory, so it is unlikely that same user would have access to change the permissions. This means that you will not be able to change the permissions from your code while it is running under that context. Remember that the code can do no more (permissions wise) than the user account allows.
You will need to set the permissions on the directory (or a parent directory) manually so that the ASP.NET user can write to it.
if you are using iis6 you need to grant the aspnet user permissions to that folder. if you are using iis7 you need to grant the IIS_IUSRS user permissions to that folder.
精彩评论