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

 

词条 setftime
释义

函数名: setftime

功 能: 设置文件日期和时间

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

程序例:

#include <stdio.h>

#include <process.h>

#include <fcntl.h>

#include <io.h>

int main(void)

{

struct ftime filet;

FILE *fp;

if ((fp = fopen("TEST.$$$", "w")) == NULL)

{

perror("Error:");

exit(1);

}

fprintf(fp, "testing...\");

/* load ftime structure with new time and date */

filet.ft_tsec = 1;

filet.ft_min = 1;

filet.ft_hour = 1;

filet.ft_day = 1;

filet.ft_month = 1;

filet.ft_year = 21;

/* show current directory for time and date */

system("dir TEST.$$$");

/* change the time and date stamp*/

setftime(fileno(fp), &filet);

/* close and remove the temporary file */

fclose(fp);

system("dir TEST.$$$");

unlink("TEST.$$$");

return 0;

}

随便看

 

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

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/15 7:17:59