[MonoTouch] UnauthorizedAccessException while accessing resources
flyingdevstudio
admin at flyingdevelopmentstudio.com
Sat Oct 29 20:24:34 EDT 2011
Actually solved the problem...
Not sure what changed, if it's our code or something in the implementation
of FileStream, but using a different overload of the FileStream constructor
solved the problem.
This one works:
var fileStream = FileStream(filename, FileMode.Open, FileAccess.Read,
FileShare.Read);
This one wouldn't:
var fileStream = FileStream(filename, FileMode.Open);
Maybe this answer will help someone with the same problem :)
--
Matt
--
View this message in context: http://monotouch.2284126.n4.nabble.com/UnauthorizedAccessException-while-accessing-resources-tp3952060p3952083.html
Sent from the MonoTouch mailing list archive at Nabble.com.
More information about the MonoTouch
mailing list