C++判断文件夹/文件是否存在

2023-01-08 15:25:43 2060人已围观 63已点赞 22人已收藏

简介本文介绍一个C++代码片段:如何在C++中判断文件夹/文件是否存在,感兴趣的朋友可以参考一下。

判断文件夹是否存在

// 判断文件夹是否存在
bool IsPathExist(const CString& csPath)
{
	WIN32_FILE_ATTRIBUTE_DATA attrs = { 0 };
	return 0 != GetFileAttributesEx(csPath, GetFileExInfoStandard, &attrs);
}

判断文件是否存在

// 判断文件是否存在
bool CCommon::IsFileExist(const CString& csPath)
{
	USES_CONVERSION;
	if (_access(CW2A(csPath), 0) != 0)
	{
		return false;
	}
	else
	{
		return true;
	}
}

需要包含头文件

#include <io.h>


更多为你推荐