Trying to figure out how to add a row to a csv file with titles. I get the content using:
$fileContent = Import-csv $file -header "Date", "Description"
$File
returns
Date,Description
Text1,text2
text3,text4
How do I append a row with a new date and description. Sorry I am relatively new to powershell. thanks to anyone that can help