InsertMode Parameter (Connect-CSV Cmdlet)
Specifies the mode for inserting data into CSV files.
Syntax
Connect-CSV -InsertMode string
Possible Values
FilePerBatch, SingleFileData Type
cstr
Default Value
"SingleFile"
Remarks
There are two modes available for inserting data to CSV file:
- FilePerBatch: A new CSV file will be created for every batch. The name of the file will have the format "yyyyMMddhhmmssSSS_batchId" where the date time represents the beginning of the transaction.
- SingleFile: In this mode everything will be inserted in a single CSV file.