请输入您要查询的百科知识:

 

词条 getftime
释义

函数名: getftime

功 能: 取文件日期和时间

用 法: int getftime(int handle, struct ftime *ftimep);

程序例:

#include

#include

int main(void)

{

FILE *stream;

struct ftime ft;

if ((stream = fopen("TEST.$$$",

"wt")) == NULL)

{

fprintf(stderr,

"Cannot open output file.\");

return 1;

}

getftime(fileno(stream), &ft);

printf("File time: %u:%u:%u\",

ft.ft_hour, ft.ft_min,

ft.ft_tsec * 2);

printf("File date: %u/%u/%u\",

ft.ft_month, ft.ft_day,

ft.ft_year+1980);

fclose(stream);

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 3:45:03