Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4258618
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T05:40:24+00:00 2026-05-21T05:40:24+00:00

Imagine you have a file sink(example.txt) data.frame(a = runif(10), b = runif(10), c =

  • 0

Imagine you have a file

sink("example.txt")
data.frame(a = runif(10), b = runif(10), c = runif(10))
sink()

and would want to add some header information, like

/* created on 31.3.2011 */
/* author */
/* other redundant information */

How would I add this “header”? Doing it manually seems trivial. Hit a few Enters, copy/paste or write information and you’re done. Of course, in R, I could read in example.txt, create example2.txt, add header information and then example.txt.

I was wondering if there’s another way of appending files from the “top”. Other solutions (from c++ or Java…) also welcome (I’m curious how other languages approach this problem).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T05:40:25+00:00Added an answer on May 21, 2026 at 5:40 am

    in R there is no need to work with an extra file. You can just do :

    writeLines(c(header,readLines(File)),File)
    

    Yet, using the linux shell seems the most optimal solution, as R is not famous for performant file reading and writing. Especially not since you have to read in the complete file first.

    Example :

    Lines <- c(
    "First line",
    "Second line",
    "Third line")
    File <- "test.txt"
    header <- "A line \nAnother line \nMore line \n\n"
    
    writeLines(Lines,File)
    readLines(File)    
    
    writeLines(c(header,readLines(File)),File)
    readLines(File)
    unlink(File)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Imagine I have a simple data file called 'test_gnu.txt' as follow: 0.32,0.116,0.398989898989899 0.34,0.010,0.01212121212121212 0.36,0.035,0.11313131313131312
Imagine I have a txt file with a path like: c:\programs\SRC_CODE\ How can I
Imagine I have the folling XML file: <a>before<b>middle</b>after</a> I want to convert it into
Imagine you have a big file stored in hdtf which contains structured data. Now
Imagine I have an input file,an output file and a file containing some elisp
Imagine you have a library for working with some sort of XML file or
Imagine I have a basic.xsd file defining some attribute myAttribute in some element myElement
Imagine that I have a long file of Rebol-formatted data, with a million lines,
Imagine I have this C function (and the corresponding prototype in a header file)
Imagine I have a class used to represent some trivial numerical data, like a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.