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

No matter what I do such as give Network Service and the ASP.NET account full rights to the folder that contains the image, I am still getting this error for a System.IO.File.Move. Anyone know what other accounts I may be missing here? Network Service is the account running the app pool under which this site runs on and I gave Network Service full rights to the entire folder.

I've tried everything. I gave Network Service and the machinename\aspnet full permissions to the folder that contains this .jpg. I'm testing this code and this move on localhost...my developer machine.

share|improve this question
I have yet to get this working still..tried all that was suggested. – CoffeeAddict Dec 15 '09 at 3:00
found this which worked: codezest.com/archive/2009/12/14/… – CoffeeAddict Dec 15 '09 at 4:35
Thank you, thank you, thank you! Been working on this for 3 hours now with no luck. Changed my Application Pool to use the LocalSystem account and it worked like a charm! – Doug Jan 24 '11 at 20:36

3 Answers

Have you tried using SysInternals FileMon now part of Process Monitor. You can use it to watch for the file access events or the access denied event.

share|improve this answer
yea it says the user trying to create/move is my domain account but it has full rights to that folder that contains the .jpg. It's got as much rights possible so I still can't see why it's preventing the create file issue with the File.Move. – CoffeeAddict Dec 15 '09 at 3:23
You could try granting the "Everyone" account full access to that folder, or try moving the folder to be a subfolder of the folder where the ASPX pages reside. The second one is obviously less of a security risk. – GrayWizardx Dec 15 '09 at 4:29
Also, What OS is this on? – GrayWizardx Dec 15 '09 at 4:30

It might be because you write into some other folder that is not under the ASP.NET application (eg %TEMP% folder or something). In this case the account used is IUSR_MACHINENAME which represents anonymous user.

You either need to impersonate, use another folder or give write privileges to IUSR_XXX (which I don't think is a good idea) to deal with that.

share|improve this answer
the Asp.net machine account which impersonates your \\localmachinename\aspnet already has full permissions. – CoffeeAddict Dec 14 '09 at 4:50
Does ISUR_localmachinename has full permissions too? – Dmytrii Nagirniak Dec 14 '09 at 5:23
added that but still the same issue. – CoffeeAddict Dec 14 '09 at 5:44
That is really wierd. Definitely needs some investigation. Hard to tell anything :( – Dmytrii Nagirniak Dec 14 '09 at 6:31

On the machine hosting the shared drive, make sure to set things up under both these tabs:

  • Sharing -> Permissions
  • Security

Most of us deal with the Security tab for getting IIS stuff working, but it was the former that was giving me the same issue with the .MoveTo() method. (It could read, just not move).

To further complicate matters, I also had the directory shared as multiple names - make sure to check the permissions for each shared name.

share|improve this answer

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.