Link Search Menu Expand Document

Getting Started in Console (command line)

The following example demonstrates usage of Console version (Bytescout.Spreadsheet.Console.exe) for conversion of spreadsheet files from command line or .bat command files.

This command line sample shows how to convert all files from \Input Files\ folder into .xls format in the \Output Files\ folder.

@echo off

rem  This command will convert all files from "Input Files" directory to XLS format.
rem  Converter will use ";" delimiter when reading CSV and TXT files.

"%PROGRAMFILES%\Bytescout Spreadsheet SDK\Console\Bytescout.Spreadsheet.Console.exe" ".\Input Files\*.*" /F XLS /O ".\Output Files" /D ";"

pause