I'm looking for a .NET (much preferably open source in C#) library for dealing with fixed length field text files. It wouldn't be too much to write one, but existing, tested work is always nicer, to start with.

I will be extracting data in fixed length fields from files produced by a PBX. Each PBX has its own file format, as well a set of record formats. I'm looking for a library with a nice a simple way of using dynamic file and record formats, e.g. read from an INI or XML file.

EDIT: I had previously overlooked Marcos Meli' great library FileHelpers, because I thought I needed to create a class for each record type at compile time. This is not so, and the lib includes a ClassBuilder class to build classes at runtime.

NEW EDIT: Records from different PBX's differ only in layout, not in data, i.e. all the record layouts map to the same class. I'm wondering if I should use FileHelper attributes that dynamically read their start and length data from a config file?

link|improve this question

feedback

2 Answers

FileHelpers

link|improve this answer
1  
wow... if only I knew about this earlier! – Toad Sep 18 '09 at 12:16
Godamnit, you could have told us about that earlier ! – Clement Herreman Sep 18 '09 at 12:17
1  
You could have asked :-) – Darin Dimitrov Sep 18 '09 at 12:20
Writing a lot of code to read/write this kind of files, I end up coding my parsers exactly like that (attributes on classes to define format), too bad I didn't find this earlier... – Guillaume86 Dec 1 '11 at 17:37
The download link points to an old version on sourceforge. latest version seems to be on their teamcity page or as nuget package id filehelpers-stable – Dave Turvey Mar 8 at 11:43
feedback
up vote 2 down vote accepted

I have since been pointed to this XML based parsing code, as well as this similar project on CodeProject. The more the merrier, and the closer I will get to a 'perfect' fit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.