diff options
author | chai <chaifix@163.com> | 2021-10-26 12:20:33 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-26 12:20:33 +0800 |
commit | 3b79158563fd2f7f72d502067f178d60c31b2c28 (patch) | |
tree | 1b583739439a00c4d347a6533a8424b153fbcbd1 /Tools/XlsxToCsv/README.md | |
parent | 0549b1e5a8a3132005e275d6026db8003cb067d2 (diff) |
+xlsxToCSV
Diffstat (limited to 'Tools/XlsxToCsv/README.md')
-rw-r--r-- | Tools/XlsxToCsv/README.md | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Tools/XlsxToCsv/README.md b/Tools/XlsxToCsv/README.md new file mode 100644 index 0000000..6752b80 --- /dev/null +++ b/Tools/XlsxToCsv/README.md @@ -0,0 +1,42 @@ +# Xlsx To Csv +Convert excel file to csv file. + +csv file encoding : utf-8 + +## Requirements +* .net framework 4.0 more +* Visual Studio 2015 + +## Support file +* Excel format : `xlsx` +* Excel 97-2003 format : `xls` + +## How to use +Convert Excel files to csv read all of the subfolders +``` +xlsxToCsv.exe +``` + +Convert specified Excel files to csv. +``` +xlsxToCsv.exe [Source file path] [Target file path] +``` + +display this help +``` +xlsxToCsv.exe -h +``` + + +## ILMerge +ILMerge is a utility for merging multiple .NET assemblies into a single .NET assembly. It works on executables and DLLs alike and comes with several options for controlling the processing and format of the output. + +### Requirements +Download and install ILMerge + +>http://www.microsoft.com/en-us/download/details.aspx?id=17630 + +### Run +``` +ILMerge.bat +``` |