Skip to content
Advertisement

How to access a sub-file/folder in Java 7 java.nio.file.Path?

Java 7 introduced java.nio.file.Path as a possible replacement for java.io.File.

With File, when I access a file under a specific, I would do:

JavaScript

What’s the way to do this with Path?

I supposed this will work:

JavaScript

But calling parent.toString() seems ugly. Is there a better way?

Advertisement

Answer

Use the resolve method on Path.

There are two methods with this name. One takes a relative Path and the other a String. It uses the Path on which it is called as a parent and appends the String or relative Path appropriately.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement