I have some large files in CSV format that I would like to turn into objects using the Import-Csv command in Powershell. The files are missing the column headings however and these need to be added before I use Import-Csv. What is the fastest and most efficient way of adding these to the file?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Prepending to a large file is not an easy or quick operation. However, import-csv does have a "header" argument that you can use to specify the column headers, i.e.:
|
||||
|
|
|
I'm sure there is a way to do this in one line, but this will work. Assuming you have Test.csv with these contents:
This PowerShell code will create a new file, NewTest.csv, with column names and append the contents of Test.csv.
I can't speak to the performance of this if you have a really large file, but I'm not aware of any other way to do this. |
|||
|
|
Copy the string you want to prepend to a new file then concatenate the rest to that new file. |
|||
|
|
|
|||
|
|