c++ 判断文件夹是否存在,不存在则创建

c++ 判断文件夹是否存在,不存在则创建,第1张

c++中,<io.h>中的_access可以判断文件是否存在,<direct.h>中的_mkdir可以创建文件。

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

建单级目录:

#include <io.h>

#include <direct.h>

#include <string>

int main()

{

std::string prefix = "G:/test/"

if (_access(prefix.c_str(), 0) == -1) //如果文件夹不存在

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

}

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

建多级目录:

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

#include <io.h>

#include <direct.h>

#include <string>

int createDirectory(std::string path)

{

int len = path.length()

char tmpDirPath[256] = { 0 }

for (int i = 0i <leni++)

{

tmpDirPath[i] = path[i]

if (tmpDirPath[i] == '\\' || tmpDirPath[i] == '/')

{

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

{

int ret = _mkdir(tmpDirPath)

if (ret == -1) return ret

}

}

}

return 0

}

C++很简单的一种办法:

#include <iostream>

#include <fstream>

using namespace std

#define FILENAME "stat.dat"

int main()

{

fstream _file

_file.open(FILENAME,ios::in)

if(!_file)

{

cout<<FILENAME<<"没有被创建"

}

else

{

cout<<FILENAME<<"已经存在"

}

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11999031.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存