1 out of 2 rated this helpful - Rate this topic

CFile::Write

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

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

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

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

Example

//example for CFile::Write
extern CFile cfile;
char pbuf[100];
cfile.Write( pbuf, 100 );

In addition, see the examples for CFile::CFile and CFile::Open.

See Also

CFile Overview | Class Members | Hierarchy Chart | CFile::Read | CStdioFile::WriteString

Did you find this helpful?
(1500 characters remaining)