getftime具有 取檔案日期和時間功能,屬於函式名
基本介紹
- 外文名:getftime
- 功 能: 取檔案日期和時間
- 用 法: int 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.\n");
return 1;
}
getftime(fileno(stream), &ft);
printf("File time: %u:%u:%u\n",
ft.ft_hour, ft.ft_min,
ft.ft_tsec * 2);
printf("File date: %u/%u/%u\n",
ft.ft_month, ft.ft_day,
ft.ft_year+1980);
fclose(stream);
return 0;
}