C++创建文件夹

1、C++创建文件夹
其实方法有多种,但我喜欢使用第一种,可根据个人爱好取舍。
(1)直接使用Windows API 的方式

if (!CreateDirectory(strFilePath, NULL))
{
	// balabala,创建失败!
	return;
}

(2)dos命令的方式

string cmd = "mkdir -p " + strFilePath;  
system(cmd.c_str());

(3)使用access 和 mkdir 的方式

#include 
#include 
using namespace std;
if (0 != access(strFilePath.c_str(), 0))
 {
     if (0 != mkdir(strFilePath.c_str()))
     {
     	// balabala,创建失败!
     	return;
     }
 }

(4)其他方式等你来提供。。。

你可能感兴趣的:(C++)