---------------------------------------------
建单级目录:
#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
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)