MFC查找指定文件是否存在,PathFileExists 函数


             MFC判断目录下是否包含指定文件。 含文件名。

1、包含库

#include 

#pragma comment(lib,"Shlwapi.lib") //如果没有这行,会出现link错误


2、用法

BOOL PathFileExists ( __in LPCTSTR pszPath );
Parameters参数
pszPath[in] 类型:LPCTSTR
A pointer to a null-terminated string of maximum length MAX_PATH that contains the full path of the object to verify. 一个最大长度为MAX_PATH并且以'\0'结尾的字符串指针。

比如:

 

BOOL FLAG = PathFileExists(str);
	if (FLAG)
	{
		//
		AfxMessageBox(L"存在该文件");
		return true;
	}

     PathFileExists函数参数传入的要包含文件名(含文件格式)。
     存在该文件,则返回TRUE, 相反,返回FALSE.
      调用函数,传参

	char fileName[] = "1.dat";
	CString file = L"1.dat";


	bool flag = isExistFile(file);


我这里,默认查找的是exe目录下是否包含1.dat的二进制文件。

MFC查找指定文件是否存在,PathFileExists 函数_第1张图片

----------------------------------------------------------------------------------

MFC查找指定文件是否存在,PathFileExists 函数_第2张图片





你可能感兴趣的:(c++基础温习)