欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++创建文件夹

程序员文章站 2022-06-14 16:37:36
...

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 <direct.h>
#include <iostream>
using namespace std;
if (0 != access(strFilePath.c_str(), 0))
 {
     if (0 != mkdir(strFilePath.c_str()))
     {
     	// balabala,创建失败!
     	return;
     }
 }

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