小编典典

设置/更改文件的ctime或“更改时间”属性

linux

我希望使用java.nio.Files该类来更改Java中文件的时间戳记元数据。

我想更改所有3个Linux / ext4时间戳(最后修改,访问和更改)。

我可以按如下方式更改前两个时间戳字段:

Files.setLastModifiedTime(pathToMyFile, myCustomTime);
Files.setAttribute(pathToMyFile, "basic:lastAccessTime", myCustomTime);

但是,我无法修改文件的最后一次 更改:
时间。同样,值得关注的是文档中没有提到更改时间戳。最接近的可用属性是creationTime,我尝试没有成功。

关于如何Change:根据Java中的自定义时间戳修改文件元数据的任何想法?

谢谢!


阅读 855

收藏
2020-06-07

共1个答案

小编典典

我可以使用两种不同的方法来修改ctime:

  1. 更改内核,使其ctimemtime
  2. 编写一个简单(但很笨拙)的shell脚本。

第一种方法:更改内核。

KERNEL_SRC/fs/attr.c “显式定义”时,此修改将ctime更改为与mtime相匹配的内容。

有很多方法可以“明确定义” mtime,例如:

在Linux中:

touch -m --date="Wed Jun 12 14:00:00 IDT 2013" filename

在Java中(使用Java 6或7,可能还有其他):

long newModificationTime = TIME_IN_MILLIS_SINCE_EPOCH;
File myFile = new File(myPath);
newmeta.setLastModified(newModificationTime);

这是KERNEL_SRC/fs/attr.cnotify_change函数的更改:

    now = current_fs_time(inode->i_sb);

    //attr->ia_ctime = now;  (1) Comment this out
    if (!(ia_valid & ATTR_ATIME_SET))
        attr->ia_atime = now;
    if (!(ia_valid & ATTR_MTIME_SET)) {
        attr->ia_mtime = now;
    }
    else { //mtime is modified to a specific time. (2) Add these lines
        attr->ia_ctime = attr->ia_mtime; //Sets the ctime
        attr->ia_atime = attr->ia_mtime; //Sets the atime (optional)
    }

(1)这行未注释,将在更改文件时将ctime更新为当前时钟时间。我们不想要那样,因为我们想自己设置ctime。因此,我们将这一行注释掉。(这不是强制性的)

(2)这实际上是解决方案的症结所在。notify_change更改文件后执行该功能,其中时间元数据需要更新。如果未指定mtime,则将mtime设置为当前时间。否则,如果将mtime设置为特定值,我们还将ctime和atime设置为该值。

第二种方法:简单(但很笨拙)的shell脚本。

简要说明:1)将系统时间更改为目标时间2)在文件上执行chmod,文件ctime现在反映了目标时间3)还原系统时间。

changectime.sh

#!/bin/sh
now=$(date)
echo $now
sudo date --set="Sat May 11 06:00:00 IDT 2013"
chmod 777 $1
sudo date --set="$now"

如下运行:./changectime.sh MYFILE

文件的ctime现在将反映文件中的时间。

当然,您可能不希望该文件具有777权限。使用前,请确保根据需要修改此脚本。

2020-06-07