共用方式為


CArchive::Flush

強制保持在檔案緩衝區的資料都會寫入至檔案。

void Flush( );

備註

成員函式 Flush 確認所有資料都已從這個檔案傳輸至檔案。 您必須呼叫 CFile::Close 完成傳輸從檔案至存放媒體。

範例

CFile myFile(_T("CArchive__test__file.txt"), 
   CFile::modeCreate | CFile::modeWrite);
CArchive ar(&myFile, CArchive::store);

// Write a string to the archive.
ar.WriteString(_T("My string."));

// Flush all of the data to the file.
ar.Flush();     

需求

Header: afx.h

請參閱

參考

CArchive 類別

階層架構圖

CArchive::Close

CFile::Flush

CFile::Close