I have a requirement to edit a remote text file on-the-fly, the content of which currently stands at ~1Mb.

I have tried a couple of approaches and both seem to be clunky or hog memory which I can't rely on.

Thinking out logically what I'm trying to achieve is:

  1. FTP to a remote server.
  2. Download a copy of the file for backup purposes and store it somewhere locally.
  3. Open the remote file and add the necessary lines required.
  4. Remove lines from the remote file as per an array of un-required data generated from the local server.

Is this possible?

I've managed to code steps 1 and 2 but I'm having difficult with 3 and 4. The way I'm doing it now is to use fgets and return the whole string. Really, I don't want to do this as it involves manipulating and re-generating the whole string (and it's large) and then re-inserting it in between two markers in the remote file.

Is there no way of manipulating the lines of text in the file on-the-fly?

link|improve this question

65% accept rate
What do you mean by on-the-fly? In your browser window? In your local editor? – Pekka Apr 23 '10 at 8:39
In the browser. The script will run as a cron job to update and remove unwanted data from a delimited file on a property website. – user275074 Apr 23 '10 at 8:42
do you have any other access to the target server? because you could do something like use rsync, or upload a diff file via ftp and then run diff on the machine somehow, if possible – Tom Haigh Apr 23 '10 at 8:56
It sounds like you want to be using a database instead of a flat-file. Perhaps this is the time to make that change. – erisco Apr 23 '10 at 9:04
or you could make a php/whatever webservice to run on the target server which lets you perform the modifications remotely – Tom Haigh Apr 23 '10 at 9:04
feedback

1 Answer

To the best of my knowledge you cannot do 3 and 4 via FTP. It does not allow manipulation of remote files, its for file transferring only.

link|improve this answer
Are there any methods for achieving this? I could download the file and then perform the manipulating on our server and then re-upload. – user275074 Apr 23 '10 at 8:43
Of course, you retrieve the file, update it and then transfer it back. – zaf Apr 23 '10 at 8:43
But this still leaves me with the issue of manipulating the file directly rather than reading the content, editing and re-inserting. – user275074 Apr 23 '10 at 8:45
Sorry, can you elaborate more? – zaf Apr 23 '10 at 9:00
feedback

Your Answer

 
or
required, but never shown

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