首页 > 系统服务 > 详细

【设计开发】 Linux C文件创建Open函数

时间:2018-08-01 23:15:37      阅读:204      评论:0      收藏:0      [点我收藏+]

 

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

 

int main(int argc, char *argv[]) 
{
    int i ;
    int fd ;
    
    char wbuf[] = "This is write file test!";
    
    printf("hello, world!\n");

    fd=open("test.v",O_WRONLY | O_CREAT | O_TRUNC,0600);
    
    if(fd == -1)
    {
       printf("Open Failed!\n");
    }
    else
    {
       printf("Open Success!\n");
    }

    if(write(fd,wbuf,strlen(wbuf)) != -1)
    {
       printf("Write Success!\n");
    }
}

 

【设计开发】 Linux C文件创建Open函数

原文:https://www.cnblogs.com/digital-wei/p/9404377.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!