共用方式為


存取檔案狀態

CFile 也支援取得檔案狀態,包括檔案是否存在,建立和修改日期和時間、邏輯大小和路徑。

取得檔案的狀態

  • 使用 CFile 類別來取得和設定檔案的相關資訊。 一個有用的應用程式是使用 CFile 靜態成員函式 GetStatus 判斷檔案是否存在。 如果指定的檔案不存在,GetStatus 傳回 0。

因此,您可以使用 GetStatus 的結果會決定使用 CFile::modeCreate 旗標,則開啟檔案,如下所示範例時:

CFile theFile;
TCHAR* szFileName = _T("c:\\test\\myfile.dat");
BOOL bOpenOK;

CFileStatus status;
if( CFile::GetStatus( szFileName, status ) )
{
   // Open the file without the Create flag
   bOpenOK = theFile.Open( szFileName, 
      CFile::modeWrite );
}
else
{
   // Open the file with the Create flag
   bOpenOK = theFile.Open( szFileName, 
      CFile::modeCreate | CFile::modeWrite );
}       

如需相關資訊,請參閱Serialization

請參閱

概念

MFC 中的檔案