I try to imagine how that would look like in the iPhone’s filesystem. When I archive some stuff, it goes maybe into the documents dir, right? Could I take that file then and send it to a server for backup purposes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To get the documents folder in code, do this:
Where the documents folder is actually located is probably an implementation detail, and you shouldn’t ever hard-code it.
As for uploading to a server, well, you can’t access it from outside the iPhone, so you’d have to write something in your app to upload it. You can get the binary data easily:
Uploading it is scope for another question, I imagine.