vote up 2 vote down star
1

Is it possible to read a file (from my normal file system) into a iPhone App running on the iPhone Simulator?

I understand that the iPhone itself has not got a (user accessible) file system but this is simply for testing and will only ever be run in the simulator.

The file will be a text file that can be edited while the application is running, it will be read every-time a method is called.

flag

5 Answers

vote up 5 vote down check

Yes, you can, and it doesn't matter where it is. Just give it an absolute path name when you load it (Xcode won't recognize a different working directory when running the simulator).

link|flag
vote up 1 vote down

Yes, you can if your file is within your app folder ~/Library/Application Support/iPhone Simulator/User/Applications/ [your app folder] /Documents

link|flag
1  
It should be noted that this is identical to what you can do on the iPhone, i.e. NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); – unwesen May 1 at 16:20
I'm pretty sure you can in general (I just tested it) - why does it have to be in the /Documents folder? – Jesse Beder May 1 at 16:26
because it's easier to switch to device – CiNN May 1 at 16:53
vote up 0 vote down

No. Your app is running in its own sandbox on the phone. It's not allowed to read or write outside of it.

Edit: I think CiNN is correct. As long as your code stays on the simulator, you shouldn't have problems working with a file on your local drive.

link|flag
But you could make a connection (via TCP) to a little program you write to feed it the data. – MBCook May 1 at 15:56
vote up 0 vote down

I personally think that the easiest way would be to enter "file:///" in Safari within the simulator, if thats what your looking for.

link|flag
vote up 0 vote down

It should also be noted that you can do this in reverse -- you can grab the files off your hard drive that your application created in the simulator. This is a good way to check out your results (data, images, whatever) without having to build a data "viewer" into the application.

link|flag

Your Answer

Get an OpenID
or

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