主题:创建文件夹的问题。
moonblade
[专家分:120] 发布于 2008-05-14 17:47:00
我使用
UpdateData(true);
CString x;
x.Format(_T("C:\\%s"),m_text);
AfxMessageBox(x);
CreateDirectory(x,NULL) ;
创建的文件夹属性的安全选项卡里没有everyone组,如何在创建的时候让everyone可以访问并且可以读写?
回复列表 (共2个回复)
沙发
vfdff [专家分:740] 发布于 2008-05-17 20:06:00
WCEfA Testing
MD
The MD command creates a directory on the device.
Sample Commands
s sh md \windows\test
板凳
vfdff [专家分:740] 发布于 2008-05-17 20:45:00
函数名: 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;
}
我来回复