I have an ASP.NET page that creates directories, 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.
link|improve this question

Does it show you which user? – Shoban Nov 3 '10 at 9:56
aspnet or network service – masoud ramezani Nov 3 '10 at 9:58
more info: ASP.NET is not authorized to access the requested resource – masoud ramezani Nov 3 '10 at 10:00
1  
@masoud its your appthat is creating these apps so your app should have permission to write to these directories. Are you using a different username to create these directories? – Shoban Nov 3 '10 at 10:00
My code for creating directory is : Directory.CreateDirectory(filePath + "\\Thumbnails\\" + albumId); – masoud ramezani Nov 3 '10 at 10:17
show 4 more comments
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.