Tagged Questions

FileHelpers is a utility library to help .Net framework applications manage flat file input and output.

learn more… | top users | synonyms

10
votes
3answers
2k views

Column headers in CSV using fileHelpers library?

Is there a built-in field attribute in the FileHelper library which will add a header row in the final generated CSV? I have Googled and didn't find much info on it. Currently I have this: ...
9
votes
3answers
588 views

C# - Can FileHelper FieldConverter routines refer to other fields in the record?

I am using the excellent FileHelpers library to process a fixed-length airline schedule file. I have a date field, then a few fields later on in the record, a time field. I want to combine both of ...
8
votes
2answers
1k views

FileHelpers and CSV: what to do when a record can expand unbounded, horizontally

I'm trying to parse this type of CSV file with FileHelpers: Tom,1,2,3,4,5,6,7,8,9,10 Steve,1,2,3 Bob,1,2,3,4,5,6 Cthulhu,1,2,3,4,5 Greg,1,2,3,4,5,6,7,8,9,10,11,12,13,14 I can't figure out how to ...
4
votes
2answers
79 views

C# regular expression trouble

Problem! I Have the following input (rules) from a flat file (talking about numeric input): Input might be a natural number (below 1000): 1, 10, 100, 999, ... Input might be a comma separated ...
4
votes
2answers
380 views

How to define a default value for a field of a FileHelpers element class

I'm trying to load a CSV file (delims are ';' and quotes are '"'). I have successfully created everything (the wizard tool is awesome), but there's one thing that I can't find a solution for. ...
4
votes
1answer
559 views

Skipping a column in FileHelper

Using the FileHelper library for .Net, can I somehow skip a number of columns from the source file? According to docs and samples, I have to add fields for all columns. Alas, I have an excel sheet ...
4
votes
4answers
852 views

FileHelpers performance [closed]

Does anybody have some experience and comments on the performance of Filehelpers? http://filehelpers.sourceforge.net/
3
votes
1answer
207 views

Class in c# (with filehelpers) - nullable strings giving an error when other nullable types aren't

I have a class (used by filehelpers) which gives me an error when I try to define a nullable string: public String? ItemNum; The error is: Error 1 The type 'string' must be a non-nullable ...
3
votes
2answers
898 views

Issue importing CSV file using FileHelpers

I'm using FileHelpers library to import csv files into the database table. I'm having an issue importing the file that has the field that starts with the number ('800NUMBER') in the file header. Code ...
3
votes
3answers
251 views

Generic constraint for Constructor with string argument?

How to create a generic class that allows types which has constructor taking one string argument and implements ToString and implements Two functions as below. class ...
3
votes
2answers
347 views

FieldConverter ConverterKind.Date “dd/MM/yyyy” exception

I try to read a csv file. my fifth record contans a date: 03/11/2008 This is a piece of my code: [FieldConverter(ConverterKind.Date, "dd/MM/yyyy")] public DateTime datum_5; My code crashs ...
3
votes
1answer
1k views

Dynamically create a CSV file with FileHelpers

FileHelpers supports a feature called "RunTime Records" which lets you read a CSV file into a DataTable when you don't know the layout until runtime. Is it possible to use FileHelpers to create a CSV ...
3
votes
4answers
1k views

how to handle null values for SQLDecimal datatype in FileHelper classes

I am trying to load a file using FileHelpers (like it already except for this one issue :P ) I have to save CSV file data into the database, and so am using a SqlDecimal datatype to store the decimal ...
3
votes
3answers
629 views

Exporting to CSV - C#

I need to export a generic list to CSV. Obviously I could write my own, but would like to avoid this! I am able to google and find a lot of CSV parsers, but not many writers. I have downloaded ...
3
votes
3answers
708 views

Filehelpers ExcelStorage.ExtractRecords fails when first cell is empty

When the first cell of an excel sheet to import using ExcelStorage.ExtractRecords is empty, the process fail. Ie. If the data starts at col 1, row 2, if the cell (2,1) has an empty value, the method ...
3
votes
1answer
664 views

Using an array in the FileHelpers mapping class

I have been searching for a way to allow one element of my FileHelpers mapping class to be an array of specific length. For instance, I have a class like this: [DelimitedRecord(",")] public class ...
2
votes
2answers
94 views

Passing Dynamic Loaded Type to SomeFunction<T>

I am trying to pass the type of a dynamically loaded dll (it uses an interface, but I need the conectrete implementation of this) to a function and am missing something. var data = ...
2
votes
2answers
257 views

Order of fields in a type for FileHelpers

I'm reading a simple CSV file with Filehelpers - the file is just a key, value pair. (string, int64) The f# type I've written for this is: type MapVal (key:string, value:int64) = new()= ...
2
votes
2answers
596 views

FileHelpers-like data import/export utility for binary data?

I use the excellent FileHelpers library when I work with text data. It allows me to very easily dump text fields from a file or in-memory string into a class that represents the data. In working with ...
2
votes
3answers
961 views

Using FileHelpers; how to parse this CSV type

Having a few problems trying to parse a CSV in the following format using the FileHelpers library. It's confusing me slightly because the field delimiter appears to be a space, but the fields ...
1
vote
1answer
61 views

FileHelpers BadUsageException only on compiled F# but not in script

I wrote an fsi script that worked great and wanted to compile it so that I could move it easier. However, when I compiled it, all of a sudden FileHelpers began giving errors. The following code uses ...
1
vote
2answers
65 views

How to skip over bad records

I am using File Helpers 2.9.9 and I am wondering how do I get it skip over bad records instead of it just crashing? object[] transactions = engine.ReadStream(textReader); // will crash if one ...
1
vote
1answer
29 views

Change FileHelpers EOL Character

I'm trying to parse 10GB of .dat files into something recognizable in .NET. The column delimiter is a '~' and the EOL is a '++EOL++'. I know how to handle the delimiter but I can't find an easy way ...
1
vote
1answer
20 views

Conditional record type with FileHelpers [closed]

I'm trying to parse a file using the Filehelpers library. My file looks like this: 000001,"A",123,456 000002,"B","ABC","XYZ" 000003,"B","DEF","XYZ" 000004,"B","HIJ","XYZ" My file contains rows that ...
1
vote
4answers
118 views

How to use a dynamic CSV delimiter with FileHelpers?

Question: I need to read a CSV file. I use the FileHelpers library to achieve this. The problem is I need a dynamic delimiter (user defined), meaning anything can be delimiter (Comma, semicolon, ...
1
vote
0answers
72 views

read csv file with filehelpers error

I have an application developed in Visual Studio 2010 incorporating the CSLA.Net framework and FileHelpers Library. I am using the code below to read a csv file with the file helpers library. I have ...
1
vote
3answers
57 views

FileHelpers change RecordLine before reading the record

I am reading a huge file using FileHelpers.com library. I would like to change the RecordLine before reading the record like below. static void engine_BeforeReadRecord(object sender, ...
1
vote
1answer
64 views

MVC 3 with filehelper

I use filehelper 2.9.9 at http://teamcity.codebetter.com/project.html?projectId=project41 to export my data to CSV format. I use [FieldNotInFile] to ignore some field I don't want to export. I also ...
1
vote
1answer
97 views

Filehelpers NullReferenceException when trying to write a null decimal value

When using the FileHelpers library I am getting a NullReferenceException when trying to write a .csv file. I have narrowed the problem down. Whenever I have a null decimal? it throws this exception. ...
1
vote
1answer
84 views

How to pass in name of file when using List<> to store payment records from filename

I've wrote an app to iterate through a directory which contains x amount of files, and import each of them into objects within my program. I create an instance of a class for each of the files which ...
1
vote
1answer
124 views

Parsing messages with variable length arrays of fixed length fields

I have a need to parse (and build) fixed length text based messages that may in some cases contain array fields. Example: PARTA LOTA 02SUBLOT1 SUBLOT2 03TEST1 RESULT1 TEST2 ...
1
vote
1answer
137 views

Getting values from Custom Field Attributes in C#

This morning I embarked on what I thought would be a quick exercise to use custom field attributes. Having tried many things and searching many examples (most involving class rather than field ...
1
vote
1answer
30 views

Need help understanding the shell help options

I face very often the problem to understand a syntax of Shell commads help which i usually get using options --h or -h or /? etc. when there are more than 2 or 3 options. What does this form called? ...
1
vote
1answer
107 views

Output formatting with FileHelpers

I'm using FileHelpers (http://www.filehelpers.com/) to create fixed length files. In my model I have a double which needs to be outputted in a 0000.00 format. Is there anyway I can specify this with ...
1
vote
1answer
146 views

How do I fix a ConvertException while importing a csv file with the filehelpers library

I am processing a csv file that occasionally has text in an int field due to user input error. It is the first column and basically it is supposed to be a unique record id. I am catching the errors ...
1
vote
2answers
139 views

I have a CSV file where the Date and the time are into 2 fields. How can I use FileHelpers to aggregate the 2 fields into the same DateTime data?

I have a CSV file where the Date and the time are into 2 fields. How can I use FileHelpers to aggregate the 2 fields into the same DateTime data ? Thanks, ...
1
vote
2answers
407 views

Can the FileHelpers library write classes containing nullable fields as well as read them?

I'm using version 2.0 of the FileHelpers library which is documented as being able to handle .NET 2.0 Nullable types. I'm using the code given in the example from the documentation: ...
1
vote
2answers
359 views

ReadStreamAsDT - Filehelpers and C# - How do I dynamically read in a CSV using filehelpers?

I am attempting to read in a CSV dynamically via FileHelpers and work with the CSV data as a datatable. My CSV files will not be the same. They will have different column headers and different ...
1
vote
1answer
173 views

Dyanamically selecting which CSV fields are written

I am using FileHelpers to write some data out to a CSV file. FileHelpers is great because it lets me easily format the various fields using the FileHelper converters. Here is an example of a ...
1
vote
1answer
78 views

How do you control the output format of a date when writing a CSV file with FileHelpers?

I'm using the FileHelpers 2.0 library to write a CSV file using the ClassBuilder class to generate a record type. My data contains dates and so I create a field of type DateTime, but when the file is ...
1
vote
2answers
461 views

.NET how to output csv from enumeration of anonymous type?

Using FileHelpers, I decorated a class with [DelimitedRecord(",")] and was going to output an enumeration of objects of that type as CSV. But, it didn't work because my class inherits from ...
1
vote
3answers
264 views

Thread locking issue with FileHelpers between calling engine.ReadNext() method and readign engine.LineNumber property

I use producer/consumer pattern with FileHelpers library to import data from one file (which can be huge) using multiple threads. Each thread is supposed to import a chunk of that file and I would ...
1
vote
3answers
106 views

How do you access an object whose type is defined at run-time?

I am using FileHelpers to parse CSV files whose structure is unknown using the following code: string cd = string.Format(@"[DelimitedRecord(""{0}"")] ...
1
vote
3answers
329 views

Filehelpers Excel to Oracle db

I want to import excel data to oracle DB. I got enough help for Excel part, can you guys help me in Oracle side? Is it possible to import to oracledb with filehelpers? Please provide some sample ...
1
vote
1answer
322 views

how to create records for writing a csv file with FileHelpers

I am using Filehelpers to import my database from files. I am now working on the reverse process and am having trouble seeing how to create the records from my data objects. All the examples I can ...
1
vote
2answers
667 views

Exporting DataTable using FileHelpers

I want to export the contents of a DataTable to a text delimited file using FileHelpers, is this possible? Here is what I have so far: // dt is a DataTable with Rows in it DelimitedClassBuilder cb = ...
0
votes
1answer
22 views

FileHelpers Error and RecordString

I am having a curious problem with FileHelpers. When parsing a csv file, if I have set the IgnoreFirstLines parameter of the engine to anything >0, and the first error that is encountered is on the ...
0
votes
1answer
50 views

FileHelpers and SQL Insert with SqlServerStorage class ---How to show errors

I am using the FileHelpers libraries to upload a CSV file to SQL Server. I would like to present the user with a list of records which could not be uploaded do to errors. I am setting the ErrorMode ...
0
votes
1answer
60 views

Field Order In FileHelpers?

I downloaded FileHelpers from nuget but I am not sure if this feature does not exist or if I don't have the right version or what. I been looking around and it seems that FileHelpers may have an ...
0
votes
2answers
48 views

Multiple CSV strutures with FileHelpers

I am making a site that consumes a csv file this file can come in 2 formats(maybe more in the future). Structure 1 Header 1 Header 2 Header 3 Header 4 a b c d x x ...

1 2