回 帖 发 新 帖 刷新版面

主题:创建文件夹的问题。

我使用
UpdateData(true);
    CString x;
    x.Format(_T("C:\\%s"),m_text);
    AfxMessageBox(x);
    CreateDirectory(x,NULL) ;
创建的文件夹属性的安全选项卡里没有everyone组,如何在创建的时候让everyone可以访问并且可以读写?

回复列表 (共2个回复)

沙发

WCEfA Testing 

MD
The MD command creates a directory on the device.

Sample Commands

s sh md \windows\test

板凳

函数名: mkdir
功  能: 建立一个目录
用  法: int mkdir(char *pathname);
程序例:
#include <stdio.h>
#include <conio.h>
#include <process.h>
#include <dir.h>
int main(void)
{
  int status;
   clrscr();
   status = mkdir("asdfjklm");
   (!status) ? (printf("Directory created\n")) :
               (printf("Unable to create directory\n"));
   getch();
   system("dir");
   getch();
   status = rmdir("asdfjklm");
   (!status) ? (printf("Directory deleted\n")) :
  (perror("Unable to delete directory"));
   return 0;
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册