I have a .net 3.5 application that I'm running over an intranet and as far as I know it should "just run" over a mapped drive but I get a SecurityException type "FileIOPermission" this happens when I call
File.Open(mCurrentFile, FileMode.Create, FileAccess.Write, FileShare.Read)
I can create files on the mapped drive so i do have write permissions.. And also the computer is not in a domain..
I know that 2.0 applications did not run from a network but as far as i know 3.5 should do that now could it be that The System dll is v2.0 but there is no v3.5 so I can't change it...