My host swears the ASPNet account has full access to the folder some photos reside in. I'm trying to delete a photo, here's the C#:

public static bool Delete(string pathAndFilename)
{
    var path = HttpContext.Current.Server.MapPath(pathAndFilename);
    File.Delete(path);
}

(in the full code, there's a try catch in there, and bool return values)

Update: this is happening on local development box too now. Here's what I have been able to try.

I put the current user into the ViewBag, and show it on the page.

ViewBag.Account = HttpContext.User.Identity.Name;

On the dev box, it shows my currently logged in user account, which has full control of every file and folder in the project.

I checked open files, the photo I'm trying to delete wasn't open.

Will try to capture more detailed exceptions. Thanks for the ideas so far!

link|improve this question

6  
rest assured it has nothing to do with being in a static method – BrokenGlass Oct 1 '11 at 16:53
Thank you... I can rule that out. Appreciate that. – Chad Oct 1 '11 at 17:34
1  
Access denied also means that another process is using the file. Same error for two things, make sure you are disposing Streams that access the file. – Jonathan Dickinson Oct 1 '11 at 19:33
How about using UnauthorizedAccessException ? – Desolator Oct 2 '11 at 1:42
feedback

2 Answers

IUSR? That should be the NETWORK SERVICE or the ASPNET account (depending on the version of IIS)

edit: also there is no reason to give IUSR full access. It only needs read access.

link|improve this answer
1  
Only Read-privileges to delete a File? – Henk Holterman Oct 1 '11 at 17:25
Only read for the IIS user that is NOT the user that his application is running under. – Ilia G Oct 1 '11 at 18:30
Yes, sorry... I meant ASPNet user, darn dyslexia! – Chad Oct 2 '11 at 1:18
The checking what is in HttpContext.Current.User.Identity.Name. I highly suspect it is NETWORK SERVICE and not ASPNET. – Ilia G Oct 2 '11 at 5:16
feedback

If you use a fully-qualified path ("C:\foo") or if the string isn't recognizable as a path, it'll throw an HttpException.

It would be helpful if you described exactly what you're seeing.

link|improve this answer
ok, I'll capture it... thanks for the tip – Chad Oct 2 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

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