childLink function

Link childLink(
  1. Directory dir,
  2. String sub
)

get a child as a link

Implementation

Link childLink(Directory dir, String sub) {
  return dir.fs.link(dir.fs.path.join(dir.path, sub));
}