您的位置:首页 > 编程语言 > C语言/C++

c++ 判断文件夹是否存在

2009-07-20 13:08 267 查看
(1)

//目录是否存在的检查:
bool CheckFolderExist(const string &strPath)
{
WIN32_FIND_DATA wfd;
bool rValue = false;
HANDLE hFind = FindFirstFile(strPath.c_str(), &wfd);
if ((hFind != INVALID_HANDLE_VALUE) && (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
rValue = true;
}
FindClose(hFind);
return rValue;
}

(2)PathFileExists("yourfile") 但是使用时候需要 #include "Shlwapi.h"

(3)

bool FileExists(LPCTSTR lpszFileName, bool bIsDirCheck)
{
DWORD dwAttributes = GetFileAttributes(lpszFileName);
if(dwAttributes == 0xFFFFFFFF)
{
return false;
}

if((dwAttributes & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)
{
return bIsDirCheck;
}
else
{
return !bIsDirCheck;
}
}

(4)使用boost的filesystem类库的exists函数

#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/convenience.hpp>

int GetFilePath(std::string &strFilePath)
{
string strPath;
int nRes = 0;

//指定路径
strPath = "D:/myTest/Test1/Test2";
namespace fs = boost::filesystem;

//路径的可移植
fs::path full_path( fs::initial_path() );
full_path = fs::system_complete( fs::path(strPath, fs::native ) );
//判断各级子目录是否存在,不存在则需要创建
if ( !fs::exists( full_path ) )
{
// 创建多层子目录
bool bRet = fs::create_directories(full_path);
if (false == bRet)
{
return -1;
}

}
strFilePath = full_path.native_directory_string();

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: