- 论坛徽章:
- 0
|
#include <stdio.h>
#include <sys'/'types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#define LENGTH 100
main()
{
int sd,len;
char str[LENGTH],path;
printf ("输入路径\n");
scanf ("%s",&path);
sd = open("h.txt",O_CREAT |O_RDWR ,S_IRUSR | S_IWUSR,path);
if (sd)
{
write (sd,"hello",strlen("hell"));
close (sd);
}
sd = open ("h.txt",O_RDWR);
len = read (sd,str,LENGTH);
str[len]='\0';
printf ("%s\n",str);
close (sd);
}
我想知道怎么样可以把path变量写到sd = open("h.txt",O_CREAT |O_RDWR ,S_IRUSR | S_IWUSR,path);这句的"h.txt"里,以达到打开一个文件输入路径然后就可以得到变量路径,在变量路径里创建这个文件.? |
|