CFile::Write

Syntax

virtual void Write( const void FAR* lpBuf, UINT nCount )
throw( CFileException );

Parameters

lpBuf

A pointer to the user-supplied buffer that contains the data to be written to the file.

nCount

The number of bytes to be transferred from the buffer. For text-mode files, carriage return–linefeed pairs are counted as single characters.

Remarks

Writes data from a buffer to the file associated with the CFile object.

Write throws an exception in response to several conditions, including the disk-full condition.

Example

extern CFile cfile;

char pbuf[100];

cfile.Write( pbuf, 100 );

See Also

CFile::Read, CStdioFile::WriteString