在MFC中,使用PathFileExists函數來檢查給定的路徑是否存在。該函數位于shlwapi.h頭文件中。使用該函數需要傳入一個LPCTSTR類型的參數,即一個指向路徑字符串的指針。函數返回一個BOOL值,如果路徑存在則返回TRUE,否則返回FALSE。
下面是一個使用PathFileExists函數的示例代碼:
#include <shlwapi.h>
BOOL IsPathExist(LPCTSTR pszPath)
{
return PathFileExists(pszPath);
}
int main()
{
LPCTSTR pszPath = _T("C:\\Windows\\System32\\notepad.exe");
if (IsPathExist(pszPath))
{
// 路徑存在
MessageBox(NULL, _T("Path exists!"), _T("Path File Exists"), MB_OK);
}
else
{
// 路徑不存在
MessageBox(NULL, _T("Path does not exist!"), _T("Path File Exists"), MB_OK);
}
return 0;
}
在上面的示例中,首先定義了一個IsPathExist函數,該函數接受一個LPCTSTR類型的參數pszPath,并通過調用PathFileExists函數來檢查路徑是否存在。
然后,在main函數中定義了一個路徑字符串pszPath,并調用IsPathExist函數來檢查該路徑是否存在。根據返回的結果,顯示相應的消息框。
注意:在使用PathFileExists函數之前,需要在項目的屬性中鏈接shlwapi.lib庫。