INFO: The Use of a CTRL+Z Is Limited in Text FilesLast reviewed: September 4, 1997Article ID: Q68423 |
The information in this article applies to:
SUMMARYIn Microsoft C/C++, the use of a CTRL+Z (hex 1A, decimal 26) is limited in a file opened in text (translated) mode. If a file contains a CTRL+Z, there can be only one occurrence of it and it must be the last character in the file. No other instance of a CTRL+Z is allowed in text mode. By using multiple CTRL+Zs, or by having characters after the CTRL+Z, you may cause fseek(), or run-time functions that call fseek(), to behave in an unexpected manner.
MORE INFORMATIONBy using one of the following, these functions will perform as expected if you have multiple CTRL+Zs in the file.
This may necessitate modifications to your I/O routines that deal with newlines (\n) and carriage returns (\r).
Examples of Opening Binary FilesThe following opens a file called FILENAME.DAT for both reading and writing in binary mode:
FILE * fileptr; fileptr = fopen( "filename.dat", "rb+");The letter "b" in the access mode designates opening for binary mode. The following opens a file called FILENAME.DAT for both reading and writing in binary mode.
int filehndl; filehndl = open( "filename.dat", O_CREAT | O_BINARY | O_RDWR, S_IWRITE | S_IREAD);The O_BINARY constant designates the file to be opened in binary mode. With both of the file-open commands, it should be noted that the text (translated) mode is the default mode. You may link with an object module called BINMODE.OBJ to change the default mode to binary. This file is located in your LIB subdirectory. This is expected behavior for the Microsoft C/C++ Compiler. Keywords : CRTIss kbfasttip Version : MS-DOS:6.0,6.00a,6.00ax,7.0; OS/2:6.0,6.00a,7.0; WINDOWS:1.0,1.5; WINDOWS NT:1.0,2.0,4.0,5.0 Platform : MS-DOS NT OS/2 WINDOWS Issue type : kbinfo |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |