创建多级目录函数MakeSureDirectoryPathExists()所需头文件
生活随笔
收集整理的這篇文章主要介紹了
创建多级目录函数MakeSureDirectoryPathExists()所需头文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、使用函數MakeSureDirectoryPathExists()需要添加的頭文件和lib庫如下:
#include <ImageHlp.h> ? #pragma comment(lib,"imagehlp.lib") ?否則報錯:
1>------ Build started: Project: newStart, Configuration: Debug Win32 ------ 1>Compiling... 1>newStart.cpp 1>c:\users\zh\desktop\newstart\newstart\newstart.cpp(18) : error C3861: 'MakeSureDirectoryPathExists': identifier not found?
2、具體使用方法如下:
#include <iostream> #include <windows.h>//函數MakeSureDirectoryPathExists()所需頭文件和lib庫 #include <ImageHlp.h> #pragma comment(lib,"imagehlp.lib") int main() {//在C盤創建名為“test”文件夾,并在test文件夾下再創建名為“1203”的文件夾。int flag; //保存返回值。如果目錄存在,返回TRUE;如果不存在但全部路徑創建成功,返回TRUE;如果不存在且創建失敗,返回FALSE。flag = MakeSureDirectoryPathExists("E:\\test\\1203\\");std::cout<<"flag = "<<flag<<std::endl;return 0; }運行結果如下:
總結
以上是生活随笔為你收集整理的创建多级目录函数MakeSureDirectoryPathExists()所需头文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 牛客网在线编程之“字符串分割”
- 下一篇: Python初学者之ModuleNotF