Rendel
Rendel

Reputation: 1824

read/write text to the textFile through the internet

I'm new in Objective C programming and I need some help in read/write to the files.

I have a text file at my FTP - ftp://www.abc.com/A.txt which has full access on all. I want to read and write text in it.

Thanks for any help
George

Upvotes: 0

Views: 174

Answers (1)

alloc_iNit
alloc_iNit

Reputation: 5183

Either...

  1. Download A.txt from the server and store locally.
  2. Append new line/s to an existing text file.
  3. Save it and upload that document to ftp.

Or...

This may help you...iOS basic FTP setup; Read and Write Stream

Upvotes: 1

Related Questions