gpt4 book ai didi

c - 如何使用 C 使两个文件具有相同的访问时间?

转载 作者:太空宇宙 更新时间:2023-11-04 07:36:52 25 4
gpt4 key购买 nike

我有两个文件路径;都指向一个文件,比如 'abc.txt' 和 'folder/cde.txt'

如何才能使 abc.txt 与其他文件具有相同的访问时间?

我相信我可以使用 stat()utime() 但我尝试过但失败了。

这是我的代码。

int myLink(const char *oldfile, const char *newfile)
{

int result = link(oldfile, newfile);

int ret; /* return value */
struct stat buf; /* struct to hold file stats */
ret = stat(oldfile, &buf);
if (ret != 0) {
perror("Failed:");
exit(ret);
}
struct utimbuf puttime;
puttime.modtime = buf.st_mtime;

printf("\tatime: %d\n", buf.st_mtime);

if (utime(newfile, &puttime))
perror("utime");
else
{
if (utime(extName, NULL)) /* set to current time */
perror("utime");
}

return result;
}

最佳答案

假设您有两个文件名,那么您不想使用 link() 系统调用。如果由于某种原因你确实想链接文件,你需要担心它的返回值(如果第二个文件已经存在,这将是一个错误;你必须 unlink() 新文件名第一的)。一旦文件被链接起来,它们就是对同一个 inode 的两个引用,并且不可避免地具有相同的访问时间。

然后您需要决定是否希望第一个文件具有第二个文件的修改时间,反之亦然,或者您是否希望它们都具有相同的其他访问时间(例如现在,或某个时间在过去 - 或 future !)。

假设您希望第二个文件的访问时间与第一个文件的访问时间相同(但第二个文件的修改时间不变),那么您需要:

  1. 收集第一个文件的时间。
  2. 收集第二个文件的时间。
  3. 创建适当的struct utimbuf 结构。
  4. 调用utime() .

或者,对于第 3 步和第 4 步,您可以创建一个适当的 struct timeval 数组,并使用 utimes() .

我很感兴趣(甚至感到困惑)看到 struct stat在 POSIX 2008 中不再有成员 st_mtimest_atimest_ctime(time_t 类型):相反,它有 st_mtimst_atimstruct timeval 类型的st_ctim。这些允许对时间戳进行亚秒级分辨率。我强烈怀疑较旧的成员通常是出于向后兼容性的原因而存在,如果没有别的原因的话。

我将假定 st_mtimest_atime 以及 utime()(并且没有链接)。这导致修改后的代码:

int myLink(const char *oldfile, const char *newfile)
{
struct stat buf1;
struct stat buf2;
if (stat(oldfile, &buf1) != 0)
return(-1);
if (stat(newfile, &buf2) != 0)
return(-1);
struct utimbuf puttime;
puttime.modtime = buf2.st_mtime;
puttime.acttime = buf1.st_atime;
return utime(newfile, &puttime);
}

如果你想要诊断打印,你可以很容易地添加它。一般来说,库函数不应该退出程序;这使它们无法使用。诊断打印也有问题 - 例如,您可能不应该写入 stderr

关于c - 如何使用 C 使两个文件具有相同的访问时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7991085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com