Click here to Skip to main content
15,881,757 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: writing more than 1 line Pin
Joan M6-Feb-07 20:35
professionalJoan M6-Feb-07 20:35 
QuestionWriting a large CString to CFile Pin
na.nu8-Apr-06 18:06
na.nu8-Apr-06 18:06 
AnswerRe: Writing a large CString to CFile Pin
Johan Rosengren8-Apr-06 22:57
Johan Rosengren8-Apr-06 22:57 
QuestionRe: Writing a large CString to CFile Pin
na.nu11-Apr-06 17:54
na.nu11-Apr-06 17:54 
AnswerRe: Writing a large CString to CFile Pin
Johan Rosengren12-Apr-06 5:56
Johan Rosengren12-Apr-06 5:56 
GeneralRe: Writing a large CString to CFile Pin
na.nu12-Apr-06 21:36
na.nu12-Apr-06 21:36 
GeneralRe: Writing a large CString to CFile Pin
Johan Rosengren13-Apr-06 6:51
Johan Rosengren13-Apr-06 6:51 
GeneralAdding .bak feature... Pin
Hugh S. Myers27-Mar-06 15:22
Hugh S. Myers27-Mar-06 15:22 
GeneralRe: Adding .bak feature... Pin
Johan Rosengren28-Mar-06 4:56
Johan Rosengren28-Mar-06 4:56 
GeneralRe: Adding .bak feature... Pin
Hugh S. Myers30-Mar-06 5:02
Hugh S. Myers30-Mar-06 5:02 
GeneralThanks! Pin
S Douglas16-Nov-05 1:02
professionalS Douglas16-Nov-05 1:02 
GeneralRe: Thanks! Pin
Johan Rosengren16-Nov-05 7:18
Johan Rosengren16-Nov-05 7:18 
GeneralRe: Thanks! Pin
S Douglas16-Nov-05 18:15
professionalS Douglas16-Nov-05 18:15 
GeneralRe: Thanks! Pin
Johan Rosengren17-Nov-05 7:23
Johan Rosengren17-Nov-05 7:23 
GeneralRe: Thanks! Pin
S Douglas17-Nov-05 10:54
professionalS Douglas17-Nov-05 10:54 
QuestionHow to read the file fully? Pin
Member 138542914-Oct-04 21:36
Member 138542914-Oct-04 21:36 
AnswerRe: How to read the file fully? Pin
Johan Rosengren14-Oct-04 21:51
Johan Rosengren14-Oct-04 21:51 
GeneralRe: How to read the file fully? Pin
Member 138542914-Oct-04 23:12
Member 138542914-Oct-04 23:12 
GeneralRe: How to read the file fully? Pin
Member 138542914-Oct-04 23:22
Member 138542914-Oct-04 23:22 
GeneralRe: How to read the file fully? Pin
Johan Rosengren14-Oct-04 23:54
Johan Rosengren14-Oct-04 23:54 
AnswerRe: How to read the file fully? Pin
29-Oct-04 0:20
suss29-Oct-04 0:20 
GeneralRe: How to read the file fully? Pin
Johan Rosengren29-Oct-04 6:09
Johan Rosengren29-Oct-04 6:09 
GeneralRe: How to read the file fully? Pin
31-Oct-04 16:57
suss31-Oct-04 16:57 
GeneralRe: How to read the file fully? Pin
Johan Rosengren1-Nov-04 5:55
Johan Rosengren1-Nov-04 5:55 
Generaltexfile for pocket pc Pin
riki_risnandar1-Oct-04 11:04
riki_risnandar1-Oct-04 11:04 

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.