Bug in MonoTouch/MonoDevelop or something else?

Up vote 1 down vote favorite share g+ share fb share tw.

I load up a few XML files with my app in Mono when deploying to iPhone. I edited one of those XML files in Windows through a LAN connection to the Mac on which the file resided. After editing the xml file the app seems to refuse the xml file exists anymore.

THe properties are still 'copy always' and 'content' where relevant for the XML file, I know it exists and I can even open and edit it MonoDevelop. But in app isolatedstorage. Fileexists("filename.

XmL") ALWAYS returns false. I deleted the file and daded it back in, I copy+pasted the file, heck, I even renamed another xml file to the same filename and that xml file stopped being recognized. Not sure what to do now?

Ios mono monotouch monodevelop isolatedstorage link|improve this question edited Aug 21 '11 at 16:30poupou12.2k3743 asked Aug 21 '11 at 14:50meds3,10521742 100% accept rate.

Did you try "File. Exists"? Keep in mind that IsolatedStorage's main goal is to isolate the files from outside (the application) usages.

As such MonoDevelop will copy to the application folder, but not in the isolated storage. Same is true for desktop applications, MonoMac apps... FWIW IsolatedStorage API exists in MonoTouch to help you port existing code (from the 'desktop' framework or WP7) but there's no reason (beside portability) to use it. In iOS applications are already isolated (from each other) and so are their files.

File. Exists found the file, pfew. I thought I was going crazy there.

I may have just been improperly using isolatedstorage in that case. – meds Aug 22 '11 at 7:52 If the file was not created by using IsolatedStorage then you should not be able to (easily) find it again without using IsolatedStorage. – poupou Aug 22 '11 at 11:45.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions