C++ CreateDirectory

 

创建文件夹

 

关键点

 

CreateDirectory

The CreateDirectory function creates a new directory. If the underlying file system supports security on files and directories, the function applies a specified security descriptor to the new directory.

To specify a template directory, use the CreateDirectoryEx function.

BOOL CreateDirectory(

  LPCTSTR lpPathName,                        // directory name

  LPSECURITY_ATTRIBUTES lpSecurityAttributes  // SD

);

 

实现过程

 

if (::CreateDirectory("C:\\A"NULL))

    MessageBox("OK");
else
    MessageBox("Faild");

 

 

   


 

备注

CreateDirectory("e:\\aaa\\bbb",NULL);这样是错的,不能同时建两个文件,除非E盘下已经有了个aaa文件夹了。
 

 

相关链接

                           

 

 




你可能感兴趣的:(Directory)