0
0

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 1 year has passed since last update.

Javaでディレクトリを中身ごと消す方法

0
Posted at

Javaの標準APIにはディレクトリを中身ごとごっそり消すというのが無い。
Files.walk()で中身まで再帰的に取得できるけど、中身のほうが後に来るからそのままでは消せない。

中身が後に来ることもあるというのではなく、中身が後と仕様で決められているので、逆順にすれば消せる。

Files.walk(Path.of("tmp"))
	.map(x -> Stream.of(x))
	.reduce(Stream.empty(), (x, y) -> Stream.concat(y, x))
	.forEach(x -> x.toFile().delete());

ソートするとコストはnlognなので、これより重くなるはず。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?