Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

appending..

Options
  • 13-05-2008 1:30pm
    #1
    Closed Accounts Posts: 1,788 ✭✭✭


    Not really programming but I have a batch file that moves a csv file ,
    Now i need the csv file to have headers (column names) rather then just the data as it is now , is there a command i can use to append to a file rather then
    write over ?


    copy E:\shared\it\__dts_extraction\tmp\SORTING_EXTRACTION.csv E:\shared\it\__dts_extraction\unique\BOIT_INCOMING_FOR_SORTING.csv
    move E:\shared\it\__dts_extraction\tmp\SORTING_EXTRACTION.csv E:\shared\it\__dts_extraction\%datetag%\BOIT_INCOMING_FOR_SORTING.csv
    


Comments

  • Registered Users Posts: 2,931 ✭✭✭Ginger


    In the middle of the 2 filenames add a +

    for example

    copy E:\shared\it\__dts_extraction\tmp\SORTING_EXTRACTION.csv+E:\shared\it\__dts_extraction\unique\BOIT_INCOMING_FOR_SORTING.csv


Advertisement