Click here to Skip to main content
15,880,405 members
Articles / Desktop Programming / MFC
Article

CTextFile: A handy helper

Rate me:
Please Sign up or sign in to vote.
4.62/5 (28 votes)
30 Mar 2005Public Domain4 min read 190.2K   2.7K   62   65
A small helper class for reading, writing and appending to/from text files.

Introduction

While perhaps not the most impressive of classes, this one is at least useful. It lets you read, write and append to text files from a CString or CStringArray, as well as load and save to and from list- and editboxes. While not what you need to manage your data in an application, it can be used for configuration files, text dumps during development, and other such small tasks. And - it will pop up a file dialog if no file name is given to any of the member calls.

Using the code

Instantiate a CTextFile and fire away! Here is an example:

CString str("");
CTextFile tf("gnu");
  if( !tf.Save( str, m_editLoad ) )
    if( str.GetLength() )
      AfxMessageBox( tf.GetErrorMessage() );

which saves the contents of the edit box m_edit. As str (the filename) is empty, CTextFile will display a file dialog, and str will contain the selected filename on return.

In the ctor, an extension and the end-of-line marker can be given. The extension defaults to "", e-o-l to "\r\n". The extension will be used to filter files if the standard file dialog is displayed. The somewhat limited support for end-of-line markers include reading from a file to a single CString, and when writing files from a CStringArray.

  • CTextFile::CTextFile( const CString& ext, const CString& eol )

    The ctor. ext can contain the default extension ("txt", for example), and eol the end-of-line marker ("\n", for example). ext defaults to "" and eol to "\r\n".

  • BOOL CTextFile::ReadTextFile( CString& filename, CStringArray& contents )

    Will read the contents of the file filename into the CStringArray contents, one line at a time.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::ReadTextFile( CString& filename, CString& contents )

    Will read the contents of the file filename into contents.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::WriteTextFile( CString& filename, const CStringArray& contents )

    Writes contents to filename. Will create the file if it doesn't already exist, overwrite it otherwise.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::WriteTextFile( CString& filename, const CString& contents )

    Writes contents to filename. Will create the file if it doesn't already exist, overwrites it otherwise.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::AppendFile( CString& filename, const CString& contents )

    Appends contents to filename. Will create the file if it doesn't already exist.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return. AppendFile will not add end-of-line markers.

  • BOOL CTextFile::AppendFile( CString& filename, const CStringArray& contents )

    Appends contents to filename. Will create the file if it doesn't already exist.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::Load( CString& filename, CEdit* edit )

    Loads a text file from filename to edit.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return. No translation of end-of-line markers will be made.

  • BOOL CTextFile::Load( CString& filename, CListBox* list )

    Loads a text file from filename to list.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • BOOL CTextFile::Save( CString& filename, CEdit* edit )

    Saves the contents of edit to the file filename. The file will be created or overwritten.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return. Note that the end-of-line markers from the editbox will be used.

  • BOOL CTextFile::Save( CString& filename, CListBox* list )

    Saves the contents of list to the file filename. The file will be created or overwritten.

    If filename is empty, the standard file dialog will be displayed, and - if OK is selected - filename will contain the selected filename on return.

  • CString CTextFile::GetErrorMessage()

    Retrieves the error message. Should be called after any of the file operations that return FALSE and if the file name is not empty.

Points of Interest

I have to admit it, there are absolutely none. This class was really easy to cobble together, but it has been a great time-saver in its earlier incarnations.

History

  • 2004/03/22 - Initial version.
  • 2005/05/25 - Corrected bug in CTextFile::GetFilename, the creation of the filter string.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Software Developer (Senior) Abstrakt Mekanik AB
Sweden Sweden
45 years old, married, three kids.

Started with computers more than 20 years ago on a CBM-64.

Read Theoretical Philosophy at the University of Lund.

Working as a C++ consultant developer.

Science-fiction freak. Enjoy vintage punkrock.

Comments and Discussions

 
GeneralRe: texfile for pocket pc Pin
Johan Rosengren23-Nov-04 7:43
Johan Rosengren23-Nov-04 7:43 
GeneralRe: texfile for pocket pc Pin
riki_risnandar23-Nov-04 10:16
riki_risnandar23-Nov-04 10:16 
GeneralRe: texfile for pocket pc Pin
Aaron Planell23-Nov-04 12:12
Aaron Planell23-Nov-04 12:12 
GeneralRe: texfile for pocket pc Pin
Johan Rosengren25-Nov-04 5:13
Johan Rosengren25-Nov-04 5:13 
GeneralRe: texfile for pocket pc Pin
riki_risnandar25-Nov-04 12:34
riki_risnandar25-Nov-04 12:34 
GeneralRe: texfile for pocket pc Pin
Aaron Planell26-Nov-04 2:48
Aaron Planell26-Nov-04 2:48 
GeneralRe: texfile for pocket pc Pin
Johan Rosengren26-Nov-04 7:05
Johan Rosengren26-Nov-04 7:05 
GeneralRe: texfile for pocket pc Pin
Johan Rosengren25-Nov-04 5:10
Johan Rosengren25-Nov-04 5:10 
Thanks for the assistance!


GeneralReally Fantastic Pin
baoiph9-Jun-04 2:28
baoiph9-Jun-04 2:28 
QuestionHow to check whether the file exist or not?? Pin
Jigar Mehta4-Jun-04 20:20
Jigar Mehta4-Jun-04 20:20 
AnswerRe: How to check whether the file exist or not?? Pin
Johan Rosengren4-Jun-04 20:40
Johan Rosengren4-Jun-04 20:40 
AnswerRe: How to check whether the file exist or not?? Pin
yarp30-Mar-05 17:35
yarp30-Mar-05 17:35 
General! Good, but it's a wheel Pin
Synetech1-May-04 15:02
Synetech1-May-04 15:02 
GeneralRe: ! Good, but it's a wheel Pin
Johan Rosengren1-May-04 23:34
Johan Rosengren1-May-04 23:34 
GeneralRe: ! Good, but it's a wheel Pin
Synetech2-May-04 13:38
Synetech2-May-04 13:38 
GeneralRe: ! Good, but it's a wheel Pin
Johan Rosengren2-May-04 21:08
Johan Rosengren2-May-04 21:08 
QuestionHow use this code for UNICODE text files ? Pin
cdu31-Mar-04 21:03
cdu31-Mar-04 21:03 
AnswerRe: How use this code for UNICODE text files ? Pin
Johan Rosengren31-Mar-04 21:16
Johan Rosengren31-Mar-04 21:16 
Generalhistory... Pin
eFotografo23-Mar-04 3:17
professionaleFotografo23-Mar-04 3:17 
GeneralRe: history... Pin
Johan Rosengren23-Mar-04 9:07
Johan Rosengren23-Mar-04 9:07 
GeneralReally Short and simple ... Pin
Monty222-Mar-04 18:37
Monty222-Mar-04 18:37 
GeneralRe: Really Short and simple ... Pin
Johan Rosengren22-Mar-04 18:57
Johan Rosengren22-Mar-04 18:57 
GeneralRe: Really Short and simple ... Pin
Uwe Keim22-Mar-04 19:13
sitebuilderUwe Keim22-Mar-04 19:13 
GeneralRe: Really Short and simple ... Pin
Monty224-Mar-04 18:11
Monty224-Mar-04 18:11 
Generaldude... Pin
l a u r e n22-Mar-04 10:45
l a u r e n22-Mar-04 10:45 

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.