Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having a problem where I am trying to delete my file but I get an exception.

if (result == "Success")
            {
                if (FileUpload.HasFile)
                {
                    try
                    {
                        File.Delete(Request.PhysicalApplicationPath + app_settings.login_images + txtUploadStatus.Text);
                        string filename = Path.GetFileName(btnFileUpload.FileName);
                        btnFileUpload.SaveAs(Request.PhysicalApplicationPath + app_settings.login_images + filename);
                    }
                    catch (Exception ex)
                    {
                        Message(ex.ToString());
                    }
                }
            }

Also I should note that the folder I am trying to delete from has full control to network services.

The full exception message is:

System.UnauthorizedAccessException: Access to the path 'C:\Users\gowdyn\Documents\Visual Studio 2008\Projects\hybrid\hybrid\temp_loginimages\enviromental.jpg' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.File.Delete(String path) at hybrid.User_Controls.Imgloader_Add_Edit_Tbl.btnUpdate_Click(Object sender, EventArgs e) in C:\Users\gowdyn\Documents\Visual Studio 2008\Projects\hybrid\hybrid\User_Controls\Imgloader_Add_Edit_Tbl.ascx.cs:line 242

Any ideas?

share|improve this question
2  
What isn't clear about the exception? The account that the application is running under does not have access privileges to the file/folder. – Oded Jan 11 '12 at 15:01
I understand what the exception is saying. The problem is this functionality is used by a some users who need to modify images using the system. Part of that is replacing images by deleting the old image and saving a new image. – nick gowdy Jan 11 '12 at 15:25
Check your access permissions to the folder. give the proper permissions to the folder using security tab from properties window – gasroot May 23 at 17:01

6 Answers

I also had the problem, hence me stumbling on this post. I added the following line of code before and after a Copy / Delete.

Delete

File.SetAttributes(file, FileAttributes.Normal);
File.Delete(file);

Copy

File.Copy(file, dest, true);
File.SetAttributes(dest, FileAttributes.Normal);
share|improve this answer
I gave 'Everyone' full permissions to the folder without success. Somehow these file attributes worked though. Thanks. I wish MS would finally settle on a proper security model. Trying to figure out why Copy/Delete explodes every few years is frustrating to say the least. – Steve Jan 7 at 21:43
SetAttributes Normal was the trick for me - I was trying to File.Copy and overwrite a read-only file.. – Tom Hunter Feb 28 at 16:51

When a user tries to connect to your Web site, IIS assigns the connection to the IUSER_ComputerName account, where ComputerName is the name of the server on which IIS is running. By default, the IUSER_ComputerName account is a member of the Guests group. This group has security restrictions. Try to grand access to IUSER_ComputerName to that folder

Here is very good described answer about IIS security

Hope this helps

share|improve this answer

"The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error."

I hit the same thing. Check to ensure that the file is NOT HIDDEN.

share|improve this answer

The error message contains:

Access to the path 'C:\Users\gowdyn\Documents\Visual Studio 2008\Projects\hybrid\hybrid\temp_loginimages\enviromental.jpg' is denied. 

Are you sure your application has the required privileges to access the path (and / or delete, modify or create file permissions)?

share|improve this answer
@DJKRAZE it's asp.net, so it wouldn't be a matter of whether he had rights to his own user folder, but whether the account used for asp.net did. – Jon Hanna Jan 11 '12 at 16:02
The user that needs to have access depends on how he is running / debugging his application. From visual studio, or by using ISS, and then under which user. – Aphelion Jan 11 '12 at 16:08
Jon you are corerct.. I was thinking it was a normal console or service application my bad.. – DJ KRAZE Jan 11 '12 at 16:36

I too faced the same problem when trying to do this after deployment at server:

dirPath = Server.MapPath(".") + "\\website\\" + strUserName;
if (!Directory.Exists(dirPath))
{
    DirectoryInfo DI = Directory.CreateDirectory(dirPath);
}
string filePath = Server.MapPath(".") + "\\Website\\default.aspx";
File.Copy(filePath, dirPath + "\\default.aspx", true);
File.SetAttributes(dirPath + "\\default.aspx", FileAttributes.Normal);

I granted permission in IIS to other group including administrator and my problem got solved.

share|improve this answer

You need to modify the privileges of the folder you're trying to delete from/save to. Right-click on the containing folder and use the Security tab to permit modify rights for the user your application runs under.

share|improve this answer
you are assuming that he is admin of his machine.. if this is a work machine and he's just a user .. they probably set the permissions up that way for a reason.. since we are only left to assume – DJ KRAZE Jan 11 '12 at 15:06
It is a work machine and I am a power user. I don't log in as administrator. The properties of the image folder have been modified so network services has full access. But that didn't make any difference. – nick gowdy Jan 11 '12 at 15:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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