Getting Started in Console (command line)
Free Trial Web API version Licensing Request A Quote
HAVE QUESTIONS OR NEED HELP?SUBMIT THE SUPPORT REQUEST FORM or write email toSUPPORT@BYTESCOUT.COM
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