I wanted to insert an objects into excel file using c# code.
Scenario is like:
Folder 1 : Contains below file
1. Abc_input.txt
2. Xyz_input.txt
Folder 2 : Contains Below file
1. Abc_output.txt
2. Xyz_output.txt
And the excel should looks like
| File Mask | Input | Output |
| Abc | Abc_input.txt | Abc_output.txt |
| Xyz | Xyz_input.txt | Xyz_output.txt |
Input and output data will be file objects from above folder.
Please advice on this structure.
Thanks in advance.
Regards,
Sagar
Richard PorterPosted Feb 27, 2015, 6:13 AM
I'm not 100% sure if this is what you need but at least it will give you a good starting point.
Note that I used this .NET component for excel files and as you may notice it has an easy to use interface for creating an excel's workbook with C#.
Anupam SinghPosted Jul 19, 2014, 3:37 AM