c++ 判断文件夹是否存在,不存在则创建 (linux c 判断文件夹是否为空)

c++中,中的_access可以判断文件是否存在,中的_mkdir可以岩闹尺创建文件。

—-

建单级目录:

#include

#include

#include

int main()

{

std::string prefix = “弯芦G:/test/”;

if (_access(prefix.

c_str

(), 0) == -1) //如果

文件夹

不存在

_mkdir(prefix.c_str()); //则创建

}

建多级目录:

最后一个如果是文件夹的话,需要加上 ‘\\’ 或者 ‘/粗高’

#include

#include

#include

int createDirectory(std::string path)

{

int len = path.length();

char tmpDirPath = { 0 };

for (int i = 0; i

{

tmpDirPath = path;

if (tmpDirPath == ‘\\’ || tmpDirPath == ‘/’)

{

if (_access(tmpDirPath, 0) == -1)

{

int ret = _mkdir(tmpDirPath);

if (ret == -1) return ret;

}

}

}

return 0;


数据运维技术 » c++ 判断文件夹是否存在,不存在则创建 (linux c 判断文件夹是否为空)