gpt4 book ai didi

c++ - 如何使用 C++ 和 winAPI 检查目录是否存在

转载 作者:IT老高 更新时间:2023-10-28 12:34:05 25 4
gpt4 key购买 nike

如何使用 C++ 和 windows API 检查目录是否存在?

最佳答案

这是一个简单的函数,它就是这样做的:

#include <windows.h>
#include <string>

bool dirExists(const std::string& dirName_in)
{
DWORD ftyp = GetFileAttributesA(dirName_in.c_str());
if (ftyp == INVALID_FILE_ATTRIBUTES)
return false; //something is wrong with your path!

if (ftyp & FILE_ATTRIBUTE_DIRECTORY)
return true; // this is a directory!

return false; // this is not a directory!
}

关于c++ - 如何使用 C++ 和 winAPI 检查目录是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8233842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com