Writing CR/LF Combination Using CFile::Write() Function

Last reviewed: October 10, 1997
Article ID: Q92803
7.00 | 1.00 1.50 1.51 1.52 | 1.00 2.00 2.10 4.00 4.10
MS-DOS | WINDOWS             | WINDOWS NT
kbprg

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC), included with:

        - Microsoft C/C++ version 7.0
        - Microsoft Visual C++ for Windows, versions 1.0, 1.5, 1.51, and
          1.52
        - Microsoft Visual C++ 32-bit Edition, versions 1.0, 2.0, 2.1, 4.0, 4.1
    

SUMMARY

In an application developed with the Microsoft Foundation Classes (MFC) that uses the CFile class, the Write() member function may appear not to correctly process the carriage return-linefeed (CR/LF) combination unless both the carriage return and linefeed are explicitly stated.

For example, the following code

   CFile file;

   // ...

   file.Write("Hello\n", 6);
   file.Write("Hello\n", 6);

produces the following output:

Hello

     Hello

However, the following code

   file.Write("Hello\n\r", 7);
   file.Write("Hello\n\r", 7);

produces the following output:

Hello Hello

MORE INFORMATION

When an application uses the CStdioFile class derived from CFile, an application can open a file in either text mode or binary mode. Using a CStdioFile object is the preferred method to place a CR/LF combination into a file. However, if the application must use a CFile object, a CR/LF combination may be explicitly output as demonstrated above.


Additional reference words: kbinf 7.00 1.00 1.50 2.00 2.10 2.50 2.51 2.52
3.00 3.10 4.00 4.10
KBCategory: kbprg kbfasttip
KBSubcategory: MfcFileIO
Keywords : MfcFileIO kbfasttip kbprg
Technology : kbMfc
Version : 7.00 | 1.00 1.50 1.51 1.52 | 1
Platform : MS-DOS NT WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.