Tagged Questions
The fileparse tag has no wiki summary.
36
votes
9answers
22k views
What is the easiest way to parse an INI File in C++?
I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an ...
6
votes
10answers
2k views
Best method of Textfile Parsing in C#?
I want to parse a config file sorta thing, like so:
[KEY:Value]
[SUBKEY:SubValue]
Now I started with a StreamReader, converting lines into character arrays, when I figured there's gotta be ...
2
votes
5answers
563 views
What would be the best way to parse this file?
I was just wondering if anyone knew of a good way that I could parse the file at the bottom of the post.
I have a database setup with the correct tables for each section eg Refferal Table,Caller ...
2
votes
4answers
3k views
File Parse Design Pattern
Does anybody recommend a design pattern for taking a binary data file, parsing parts of it into objects and storing the resultant data into a database?
I think a similar pattern could be used for ...
1
vote
12answers
13k views
Best Practices for AS3 XML Parsing
I've been having some trouble parsing various types of XML within flash (specifically FeedBurner RSS files and YouTube Data API responses). I'm using a URLLoader to load a XML file, and upon ...
0
votes
3answers
543 views
Parsing File details for Windows FTP Server
I am trying to connect to FTP server through the c# code and I am getting the list of Files and directories. And that I am saving in a ArrayList(with all attributes). I can find the FTP Server type ...