huahuacn / csv2excel

.NET command line tool to convert delimited files to Excel format (xls/xlsx) without Excel having to be installed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

csv2excel

.NET command line tool to convert delimited files to Excel format (xls/xlsx) without Excel having to be installed.

The only required parameter is the input file to convert.

csv2excel.exe -i input.csv

All command line options:

i = the path to the input file to convert

o = the path of the output file (path\filename.ext) if outputfile isn't specified, it will be set to the same as the input file with the new extension

c = the delimiter separating columns of input file default delimiter is commma (,)

f = the format for the output file [xls|xlsx] default format is Excel Open XML (xlsx)

t = force all cells in the output worksheet to be of type Text default behavior is to insert as Numbers/Dates (in a General cell) if detected

q = ignore any double-quotes in the file instead of treating them as text-qualifiers

v = increase debug message verbosity

h = show command line options

Download the executable here: https://github.com/nmolinos/csv2excel/releases

About

.NET command line tool to convert delimited files to Excel format (xls/xlsx) without Excel having to be installed


Languages

Language:C# 100.0%