您可以使用CFileFind類來查找指定文件是否存在。以下是一個示例代碼:
#include <afx.h>
bool IsFileExists(LPCTSTR filePath)
{
CFileFind fileFind;
return fileFind.FindFile(filePath);
}
int main()
{
LPCTSTR filePath = _T("C:\\path\\to\\file.txt");
if (IsFileExists(filePath))
{
printf("File exists\n");
}
else
{
printf("File does not exist\n");
}
return 0;
}
在上述代碼中,IsFileExists函數接受一個LPCTSTR參數表示文件路徑,然后使用CFileFind的FindFile方法嘗試查找指定文件。如果返回值為true,則表示文件存在,否則表示文件不存在。