Click here to Skip to main content
15,867,704 members
Articles / Programming Languages / C++
Article

CIniFile

Rate me:
Please Sign up or sign in to vote.
4.39/5 (16 votes)
31 May 2005 448.5K   2.8K   86   151
A class that makes it easy to implement an INI settings file in your applications.

Sample Image - cinifile.gif

Introduction

In every program I have written, I end up using some sort of INI file to keep settings from one run to the next. Instead of implementing it separately in each program, I finally got around to writing this class, CIniFile. It is simple to set up and use.

After you create your CIniFile object, call the member function SetPath(CString newpath) to set the path/filename for the INI file to read from and write to.

To read the INI file data into the class, call ReadFile().

To retrieve data from the class, use GetValue or one of its overloads:

//returns value of keyname/valuename as CString
CString GetValue(CString keyname, CString valuename);

//returns value of keyname/valuename as int
int GetValueI(CString keyname, CString valuename);
 
//returns value of keyname/valuename as double
double GetValueF(CString keyname, CString valuename);

To set data values in the class, call SetValue or one of its overloads:

bool SetValue(CString key, CString valuename, CString value, bool create = 1); 
bool SetValueI(CString key, CString valuename, int value, bool create = 1);
bool SetValueF(CString key, CString valuename, double value, bool create = 1);

Use the optional parameter create as false if you do not want it to create the key/value if it doesn't already exist.

SetValue returns TRUE if the value was successfully stored, FALSE otherwise.

To delete a value from the class, call DeleteValue(CString keyname, CString valuename). This function will return TRUE if the value is deleted, FALSE otherwise.

To delete an entire key from the class, call DeleteKey(CString keyname). This function will return TRUE if the key is deleted, FALSE otherwise.

To remove all data stored in the class, call Reset().

Other useful functions are GetNumKeys() which returns the number of keys in the INI file and GetNumValues(CString keyname) which returns the number of values stored in the specified key.

Finally, to write all your stored data to the specified INI file, call WriteFile().

That's it! It is simple.

Email comments to cabadam@tamu.edu.

Updates

  • 5 May 2000

    Updated source and demo files.

  • 2 March 2003

    It has been a long time since I've looked at this article, but as there has been a lot of interest in the non-MFC version of this class, I decided to go ahead and upload it here. As the non-MFC version, rewritten by Shane Hill, contains many more features, I've decided to remove the original MFC class from here. This means a couple things. First - the demo picture at the top of this article is wrong. There are no spaces surrounding the '=' sign. Also, even though the class contains many more features, the basic operation of the class remains the same for the most part. New features include the ability to enumerate existing keys and values and to add comments into the INI file. For the new additions, see the well documented header file.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Contents of the inifile. Pin
Adam Clauss25-Mar-02 6:27
Adam Clauss25-Mar-02 6:27 
GeneralRe: Contents of the inifile. Pin
26-Mar-02 2:49
suss26-Mar-02 2:49 
GeneralRe: Contents of the inifile. Pin
Adam Clauss26-Mar-02 8:13
Adam Clauss26-Mar-02 8:13 
GeneralRe: Contents of the inifile. Pin
Peter, The Pumpkin Eater5-Aug-02 11:02
Peter, The Pumpkin Eater5-Aug-02 11:02 
GeneralRe: Contents of the inifile. Pin
SREERAMULU7-Mar-03 18:12
SREERAMULU7-Mar-03 18:12 
GeneralIf You Are Looking Non-MFC Code... Pin
Adam Clauss4-Mar-02 10:05
Adam Clauss4-Mar-02 10:05 
GeneralNon MFC code Pin
Ray Romero15-Feb-02 6:43
Ray Romero15-Feb-02 6:43 
GeneralSorting and Searech the Keys+Values Pin
29-Jan-02 23:49
suss29-Jan-02 23:49 
GeneralRe: Sorting and Searech the Keys+Values Pin
ZhuoGuangSheng7-May-03 6:52
ZhuoGuangSheng7-May-03 6:52 
GeneralClass if not very good at parsing "non-common" INI's (and it doesn't ignores remarks!!!) Pin
10-Sep-01 7:40
suss10-Sep-01 7:40 
GeneralRe: Class if not very good at parsing "non-common" INI's (and it doesn't ignores remarks!!!) Pin
3-Apr-02 5:30
suss3-Apr-02 5:30 
GeneralCIniFile class with MFC Removed Pin
20-Aug-01 21:02
suss20-Aug-01 21:02 
GeneralLink errors Pin
dereks19-Aug-01 2:27
dereks19-Aug-01 2:27 
GeneralRe: Link errors Pin
Micha19-Aug-01 22:57
Micha19-Aug-01 22:57 
GeneralRe: Link errors Pin
24-May-02 20:08
suss24-May-02 20:08 
GeneralCIniFile and Linux/Unix Pin
16-Aug-01 19:33
suss16-Aug-01 19:33 
GeneralRe: CIniFile and Linux/Unix Pin
markkuk16-Aug-01 19:42
markkuk16-Aug-01 19:42 
GeneralRe: CIniFile and Linux/Unix Pin
16-Aug-01 20:13
suss16-Aug-01 20:13 
GeneralRe: CIniFile and Linux/Unix Pin
Todd Smith16-Aug-01 20:25
Todd Smith16-Aug-01 20:25 
GeneralRe: CIniFile and Linux/Unix Pin
17-Aug-01 21:58
suss17-Aug-01 21:58 
GeneralFunction Overloading Pin
2-Aug-01 9:13
suss2-Aug-01 9:13 
QuestionHow about in C Pin
25-May-01 4:52
suss25-May-01 4:52 
AnswerRe: How about in C Pin
Carlos Antollini25-May-01 5:13
Carlos Antollini25-May-01 5:13 
GeneralRe: How about in C Pin
3-Jun-01 16:30
suss3-Jun-01 16:30 
GeneralRe: How about in C Pin
2-Jul-01 20:20
suss2-Jul-01 20:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.