标签: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.
标签:des style blog http color ar strong 文件 sp
原文地址:http://www.cnblogs.com/chechen/p/4025784.html