StringBetween returns a partial tree in an ASCII representation.
(start, stop int, showAttributes bool)
| 162 | |
| 163 | // StringBetween returns a partial tree in an ASCII representation. |
| 164 | func (tree *FileTree) StringBetween(start, stop int, showAttributes bool) string { |
| 165 | return tree.renderStringTreeBetween(start, stop, showAttributes) |
| 166 | } |
| 167 | |
| 168 | // Copy returns a copy of the given FileTree |
| 169 | func (tree *FileTree) Copy() *FileTree { |