⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setimeto.c

📁 国外网站上的一些精典的C程序
💻 C
字号:
/***  SETIMETO.C - Set the timestamp of one file to match another.****  public domain demo by Bob Stout*/#include <stdio.h>#include <stdlib.h>#include <dos.h>#include <io.h>#include <fcntl.h>#include "ftime.h"int main(int argc, char *argv[]){      int fd0, fd1;      struct ftime Ftime;      if (3 > argc)      {            puts("Usage: SETIMETO filename_w/original_stamp "                  "filename_w/stamp_to_set");            return EXIT_FAILURE;      }      if (-1 == (fd0 = open(argv[1], O_RDONLY)))      {            printf("Unable to open %s\n", argv[1]);            return EXIT_FAILURE;      }      getftime(fd0, &Ftime);              /* Save the time/date         */      if (-1 == (fd1 = open(argv[2], O_WRONLY)))      {            printf("Unable to open %s\n", argv[2]);            return EXIT_FAILURE;      }      setftime(fd1, &Ftime);              /* Set the time/date          */      close(fd0);      close(fd1);      return EXIT_SUCCESS;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -