vote up 18 vote down star
6

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 open-source solution or attempt to parse it manually?

flag

8 Answers

vote up 44 vote down check

You can use the Windows API functions, such as GetPrivateProfileString() and GetPrivateProfileInt().

link|flag
vote up 15 vote down

If you need a cross-platform solution, try Boost's Program Options library.

link|flag
i would suggest this library too – varnie Nov 4 at 10:31
vote up 6 vote down

I have never parsed ini files, so I can't be too specific on this issue.
But i have one advice:
Don't reinvent the wheel as long as an existing one meets your requirements

http://en.wikipedia.org/wiki/INI_file#Accessing_INI_files
http://sdl-cfg.sourceforge.net/
http://sourceforge.net/projects/libini/
http://www.codeproject.com/KB/files/config-file-parser.aspx

Good luck :)

link|flag
vote up 2 vote down

Just use the Win32 APIs. Don't worry, they're easy as pie.

link|flag
vote up 2 vote down

Unless you plan on making the app cross-platform, using the Windows API calls would be the best way to go. Just ignore the note in the API documentation about being provided only for 16-bit app compatibility.

link|flag
vote up 2 vote down

I use SimpleIni. It's cross-platform.

link|flag
vote up 0 vote down

Have you tried libconfig; very JSON-like syntax. I prefer it over XML configuration files.

link|flag
vote up 0 vote down

google sscanf or fscanf

link|flag

Your Answer

Get an OpenID
or

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