码迷,mamicode.com
首页 > 编程语言 > 详细

CreateDirectory 创建文件夹 C\C++

时间:2014-10-15 13:04:20      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   ar   strong   文件   sp   

函数原型:

CreateDirectory(
LPCTSTR lpPathName,
LPSECURITY_ATTRIBUTES lpSecurityAttributes
);

简介:

     CreateDirectory 是Win32API函数,用于创建文件夹。
     参数 lpPathName 表示路径
    参数 lpSecurityAttributes 表示安全属性

 

例子:

1   //设置属性
2         SECURITY_ATTRIBUTES attribute;
3         attribute.nLength = sizeof(attribute);
4         attribute.lpSecurityDescriptor = NULL;
5         attribute.bInheritHandle = FALSE;
6         //创建
7         if(CreateDirectoryA(“d:\\hehe”,&attribute) == 0)
8             AfxMessageBox("false");

 

2.

检查指定的目录是否存在.
Verifies that a path is a valid directory.
 
BOOL PathIsDirectory(_In_ LPCTSTR pszPath);
 
param : pszPath 路径文本.
 
return :
若找到该目录返回 FILE_ATTRIBUTE_DIRECTORY
若未找到 返回FALSE.
 

CreateDirectory 创建文件夹 C\C++

标签:des   style   blog   http   color   ar   strong   文件   sp   

原文地址:http://www.cnblogs.com/chechen/p/4025784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!