|
**File Conversion from CSV format to Excel(.xsl) C#
Detailed Requirement is :
Requirements for File Conversion Application:
1.My Application must be command-line it should indicate success or failure via a message in the command line.
2. My Application must be built using .NET version 2.0, programming language should be C#.
3. The app.config file must be used for all configuration options.
4. 1st configuration option: Source file name and location must be configurable in the app.config. The application will read this information to know where to find the input file.
5. 2nd configuration option: Destination file name and location must be configurable in the app.config. The application will read this information to know where to save the output file.
6. The output file will be saved as a text (.txt) file.
So, the general flow for this application is:
1. CSV Input File is created by user or external application
2. My Application reads data in from CSV file
3. My Application converts records from the CSV file to a new format (xls format)
4. My Application outputs to text file.
Thanks In Advance.
|