vote up 0 vote down star

I'm attempting to read the contents of a file in a medium trust environment (Go Daddy), and Im naturally getting SecurityException with FileIOPermission. Is there anyway around this?

flag

54% accept rate
The ability to read arbitrary files is the ability to steal arbitrarily much private user information, hence the restriction to fully trusted code. Can you restrict your file reading to, say, isolated storage, or some other less dangerous mechanism? – Eric Lippert Jun 10 at 22:26

2 Answers

vote up 3 vote down

Be careful to use relative paths for your site. When you do: c:\inetpub\wwwroot\dir\dir\dir\mysite to access a file. It starts to query from C and above. That type of access is disabled and you will get a SecurityException.

another solution is here: http://forums.asp.net/t/1052417.aspx

or here: http://stackoverflow.com/questions/271944/storing-temporary-user-files-in-asp-net-in-medium-trust

link|flag
vote up 0 vote down

I allow users to upload file on my website BootBootReboot.com. You should be able to write to folders within your shared folder. Pretty much, use relative paths instead of static paths to random folders.

Just make sure that WRITE permissions are established for the folders to which you want to write the files.

link|flag

Your Answer

Get an OpenID
or

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