Is there an easy way to append to a path created like this:
final Path path = Files.createTempDirectory(...);
Suppose this creates a temp dir in /tmp/xyx_123/. Now I want path to create another folder under /tmp/xyz_123/ called foo something like
path.createDirectory("foo"); or path.appendDirectory("foo");
Is there an easy way to do this?