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?
|
|
You can use the Windows API functions, such as GetPrivateProfileString() and GetPrivateProfileInt(). |
||
|
|
|
|
I have never parsed ini files, so I can't be too specific on this issue. http://en.wikipedia.org/wiki/INI_file#Accessing_INI_files Good luck :) |
|||
|
|
|
|
Just use the Win32 APIs. Don't worry, they're easy as pie. |
||
|
|
|
|
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. |
||
|
|
|
|
If you need a cross-platform solution, try Boost's Program Options library. |
|||
|
|
|
I use SimpleIni. It's cross-platform. |
||
|
|
|
|
Have you tried libconfig; very JSON-like syntax. I prefer it over XML configuration files. |
||
|
|
|
|
google sscanf or fscanf |
||
|
|
