RELATIVE_TO relative path to target from base
Contents
Inputs
- base: directory to which the other path should be relative
- target: path to be made relative
Outputs
- rel: relative path from base to target
Note: Java Path.relativize has an algorithm so different that we choose not to use it. javaPathObject(base).relativize(javaPathObject(target)) https://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html#relativize-java.nio.file.Path-