这个我有直接发你吧~~
#include
#include
#include
#include
#define WRITTEN_CONTENT "利用write函数将“Linux下c软件设计"
int main(int argc,char **argv)
{
int fd = open("hello",O_CREAT|O_TRUNC|O_WRONLY,0644);
if(fd == -1)
{
perror("creating file \"hello\" failed");
return errno;
}
size_t length = strlen(WRITTEN_CONTENT);
if(write(fd,WRITTEN_CONTENT,length) != length)
{
perror("writing contents failed");
return errno;
}
close(fd);
return 0;
}
不难吧,学过文件的就不应该不会
就那么点文件操作你不会自己写