Print path_chain object
# S3 method for path_chain print(x, ...)
x | `path_chain` object |
---|---|
... | elipsis for API consistency, does nothing |
level2.b <- path_link("fileA.RData") level2.a <- path_link("fileB.RData") level1 <- path_link("data", list(level2.a = level2.a , level2.b = level2.b)) root <- path_link("files", list(level1)) print(root)#> path_chain #> root: files #> children: 2#> [1] TRUE#> path_chain #> root: files #> children: 3