linux每隔秒往文件中写入,linux操作系统编程——每隔一秒往文本文件写入时间...

程序要求:

(1)读写一个test.txt文件,每隔1秒往文件中写入一行时间日期数据;

1、 2012-8-7 1:2:3

....

(2)下次启动程序时能够追加到原文件之后,并且序号能够衔接上原先序号;

程序如下:

#include

#include

#include

#include

int main(int argc, const char *argv[])

{

FILE *file;

struct tm *t1;

time_t t;

char buf[100];

int line = 1;

int c;

memset(buf, 0, sizeof(buf));

if ((file = fopen("test.txt", "a+")) < 0)

{

perror("failed to open test.txt");

exit(-1);

}

while ((c = getc(file)) != EOF) //计算行数,用于下次打开时能够衔接上之前的行数

if (c == '\n')

line++;

while (1)

{

time(&t);

t1 = localtime(&t); //获取当前世界

sprintf(buf, "%d, %d-%d-%d %d:%d:%d\n", line++, t1->tm_year + 1900, t1->tm_mon + 1, t1->tm_mday, t1->tm_hour, t1->tm_min, t1->tm_sec);

fwrite(buf, sizeof(char), strlen(buf), file);

fflush(file);

sleep(1);

}

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值