Re: [R] Appending strings at the beginning of a text file

2009-08-26 Thread Paul Smith
Henrique, With paste(), it works only if the file has only one line; otherwise, "Text at beginning of file" is repeated after each line of the file. Paul On Wed, Aug 26, 2009 at 2:03 PM, Henrique Dallazuanna wrote: > It works with paste, but I forgotten the close(fConn) after the writeLines.

Re: [R] Appending strings at the beginning of a text file

2009-08-26 Thread Henrique Dallazuanna
It works with paste, but I forgotten the close(fConn) after the writeLines. On Tue, Aug 25, 2009 at 2:48 PM, Paul Smith wrote: > Thanks, Henrique. > > I think you mean the following: > > fConn <- file('test.txt', 'r+') > Lines <- readLines(fConn) > writeLines(c("Text at beginning of file\n", Lin

Re: [R] Appending strings at the beginning of a text file

2009-08-25 Thread Paul Smith
Thanks, Henrique. I think you mean the following: fConn <- file('test.txt', 'r+') Lines <- readLines(fConn) writeLines(c("Text at beginning of file\n", Lines), con = fConn) close(fConn) (With paste(), it does not work.) Paul On Tue, Aug 25, 2009 at 5:02 PM, Henrique Dallazuanna wrote: > Try th

Re: [R] Appending strings at the beginning of a text file

2009-08-25 Thread Henrique Dallazuanna
Try this; fConn <- file('test.txt', 'r+') Lines <- readLines(fConn) writeLines(paste("Text at beginning of file", Lines, sep = "\n"), con = fConn) On Tue, Aug 25, 2009 at 12:54 PM, Paul Smith wrote: > Dear All, > > I have a piece of text that I want to append to a text file at the >

[R] Appending strings at the beginning of a text file

2009-08-25 Thread Paul Smith
Dear All, I have a piece of text that I want to append to a text file at the beginning of the text file. I have thought about using cat() with the option 'append=T', but the appending, in this case, is done at the bottom of the text file. Any ideas? Thanks in advance, Paul