1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Javaでファイルやディレクトリのタイムスタンプを変更したい。

Posted at

Javaでファイルやディレクトリのタイムスタンプを変更したい場合Files.setLastModifiedTimeを利用すると便利です。たとえば指定のファイルのタイムスタンプを現在時刻にしたい場合は以下のようなコードになります。

FileTime now = FileTime.from(Instant.now());
Path file = Paths.get("/path/to/file");
Files.setLastModifiedTime(file, now);

Files.setLastModifiedTimeの第2引数には時刻を指定します。Javaで時間や日付というとDateCalendarLocalDateTimeあたりをよく利用しますが、ここではFileTimeというあまりなじみのないものを利用することに注意する必要があります。

環境情報

$ java -version
openjdk version "11.0.3" 2019-04-16
OpenJDK Runtime Environment AdoptOpenJDK (build 11.0.3+7)
OpenJDK 64-Bit Server VM AdoptOpenJDK (build 11.0.3+7, mixed mode)
$ javac -version
javac 11.0.3
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?