Hi there.
when uploaded a file to the temp dir on my Server, I want to move it from temp to another folder within the Server directory (rename the file and move to diff dir) however I always get the error that access has been denied!
but the permissions are set to allow modify/write for both the temp folder and the main folder I wish to copy the file to.
any ideas?
Code:System.IO.File.Move(Server.MapPath("temp/" + theFileName), Server.MapPath(theNewFilenameAndDir));
