What is the fastest way to the following in C# 3.5 :
- Iterate through files in a directory
- Read the file's records (fixed length of 247 characters)
- Convert the fixed length string of each record to a Struct or Class.
Thanks
What is the fastest way to the following in C# 3.5 :
Thanks
custom class to handle files
class customFile
{
string fileText;
public string FileText
{
get { return fileText; }
set { fileText = value; }
}
}
read all text
string[] filePaths = Directory.GetFiles(dirPath);
List<customFile> customFiles = new List<customFile>();
foreach (string file in filePaths)
{
customFiles.Add(new customFile { FileText = File.ReadAllText(file) });
}
This would be relatively fast to write:
If this is the fastest way possible, performance-wise? Probably not, but it won't make a huge difference. What will impact the performance is the implementation of the deserialization within the ConvertFileToStructs() function. But to answer this, we need to know the specific format of your files.
Just read your comments. I would suggest the following parsing:
This code could probably be optimized for performance, but I don't think it would change things dramatically, especially because I/O to disk is involved and Substring() is pretty fast (see http://dotnetperls.com/substring). Of course you will have to test this on your machine.