dupfinfo.c

来自「语音处理平台 可以分析语音能量 第一振峰频率等数据」· C语言 代码 · 共 51 行

C
51
字号
/*******************************************************************************                                                                             **       Copyright (C) 1992-1995 Tony Robinson                                 **                                                                             **       See the file LICENSE for conditions on distribution and usage         **                                                                             *******************************************************************************//*   set the atime and mtime of path1 to be the same as that of path0*/#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#if defined(MSDOS) || defined(_WINDOWS)# include <io.h># include <sys/utime.h>#else# include <utime.h># include <unistd.h>#endif#include "shorten.h"int dupfileinfo(path0, path1) char *path0, *path1; {  int errcode;  struct stat buf;  errcode = stat(path0, &buf);  if(!errcode) {    struct utimbuf ftime;    /* do what can be done, and igore errors */    (void) chmod(path1, buf.st_mode);    ftime.actime  = buf.st_atime;    ftime.modtime = buf.st_mtime;    (void) utime(path1, &ftime);#ifdef unix    (void) chown(path1, buf.st_uid, -1);    (void) chown(path1, -1, buf.st_gid);#endif  }  return(errcode);}#ifdef PROGTESTint main(int argc, char **argv) {  return(dupfileinfo(argv[1], argv[2]));}#endif

⌨️ 快捷键说明

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