Append values to a CSV file
- Appends new values to an existing CSV fileValues
- Specify the values. Values are separated by your chosen delimiter and each row is separated by a new linePath
- Path to where you want the CSV file to be stored on the local machineDelimiter
- The character you want to use to separate the values (e.g. comma, semi-colon etc.). The same delimiter should be used to separate values in the Values
fieldCreate a new CSV file
- Creates a CSV file from a given string of valuesNames
- Specify the column names as a list. Separate each item on the list with your choosen delimiter (for example, commas)Values
- Specify the values. Values are separated by your chosen delimiter and each row is separated by a new linePath
- Path to where you want the CSV file to be stored on the local machineFileName
- The name you want to give the fileDelimiter
- The character you want to use to separate the values (e.g. comma, semi-colon etc.). The same delimiter should be used to separate values in the Names
and Values
fieldsDelete a column from a CSV file by index
- Deletes a column from a CSV file at the specified indexPath
- Full path to the locally stored CSV file (e.g. C:\Temp\myFile.csv)Index
- The index of the column you wish to delete from the file. The index starts from zeroExport CSV file to json
- Opens a CSV file and writes the contents of the file into a json stringCsvPath
- Full path to the locally stored CSV file (e.g. C:\Temp\myFile.csv)FileName
- The name of the json file that will be stored on your local machineJsonPath
- Path on your local machine where you want to save the json fileMerge two CSV files
- Merges a new CSV file to an existing CSV fileOldFile
- Path to the CSV file you wish to append to (e.g. C:\Temp\old.csv)NewFile
- Path to the CSV file to add to the other file (e.g. C:\Temp\new.csv)Reverse the order of a CSV file
- Reverses the order of the provided CSV file. This action takes in one inputPath
- Path to the locally stored CSV file (e.g. C:\Temp\myFile.csvRead CSV row
- Read the entire data of a given row.filePath
- Path to the CSV file you wish to read (e.g. C:\Test\test.csv)row
- the index other the row to read (starts from 1)Read CSV column
- Read the entire data of a given column.filePath
- Path to the CSV file you wish to read (e.g. C:\Test\test.csv)column
- the index other the column to read (starts from 1)fileEncoding