怎样建立一个文件夹

解决方案 »

  1.   

    BOOL CreateDirectory(
      LPCTSTR lpPathName,                         // pointer to directory path string
      LPSECURITY_ATTRIBUTES lpSecurityAttributes  // pointer to security descriptor
    );
      

  2.   

    BOOL CreateDirectory(
      LPCTSTR lpPathName,                         // pointer to directory path string
      LPSECURITY_ATTRIBUTES lpSecurityAttributes  // pointer to security descriptor
    );
      

  3.   

    用API函数
    CreateDirectory("路径+文件夹名称",NULL);
    即可。