C++中的_access函数 使用案例-查找并创建目录

头文件:

函数原型:int _access(const char *pathname, int mode);

参数:pathname 为文件路径或目录路径 mode 为访问权限(在不同系统中可能用不能的宏定义重新定义)

返回值:如果文件具有指定的访问权限,则函数返回0;如果文件不存在或者不能访问指定的权限,则返回-1.

备注:当pathname为文件时,_access函数判断文件是否存在,并判断文件是否可以用mode值指定的模式进行访问。当pathname为目录时,_access只判断指定目录是否存在,在Windows NT和Windows 2000中,所有的目录都只有读写权限。

mode的值和含义如下所示:

00——只检查文件是否存在

02——写权限

04——读权限

06——读写权限
example:
char car_savePicPathBuf[512];
sprintf_s(car_savePicPathBuf, “E:\CNN_workspace\resNet_iter_%d-caffemodel”, step);
std::string strSavePath_main = string(car_savePicPathBuf);
if (_access(strSavePath_main.c_str(), 0) == -1)
{
//如果没有找到这个目录 strSavePath_main,就创建这个文件夹
int i = _mkdir(strSavePath_main.c_str());
}

创建文件,并写入数据到txt文件
std::string txtpath = “E:\CNN_workspace\a.txt”;//参数选择为1.1
FILE *F = fopen(txtpath.c_str(), “a+”);
char put[300];
sprintf(put, “resNet_iter_%d.caffemodel \t car_false_num:\t%d\t rate is : \t%.3f\t phone_false_num: \t%d\t rate is: \t%.3f\n”, step, car_false_num, car_rate, phone_false_num, phone_rate);
fprintf(F, put);
fclose(F);

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