Chinaunix首页 | 论坛 | 博客
  • 博客访问: 130428
  • 博文数量: 38
  • 博客积分: 2050
  • 博客等级: 大尉
  • 技术积分: 471
  • 用 户 组: 普通用户
  • 注册时间: 2007-11-19 15:49
文章分类

全部博文(38)

文章存档

2009年(1)

2008年(37)

我的朋友

分类: LINUX

2008-09-23 16:52:39

 
write
    fp = fopen("config", "w+");
    sprintf(tmp, "nwa: %d\n", global_rzone.nwa);
    fputs(tmp, fp);
    fclose(fp);
 
read
//get config file
    fp = fopen("config", "r");
    if (fp)
    {
        //read config
        fgets(tmp, fp);
        sscanf(tmp, "%*s %d", &nwa);
        global_rzone.nwa = nwa;
    }
 
stat
ret = stat(file, &buf);
if (buf.st_size == 0)
{
    printf("DVD test file:%s error!\n", argv[1]);
    return 0;
}
阅读(1062) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~