Versions in this module Expand all Collapse all v1 v1.0.2 Jun 10, 2023 Changes in this version + type DirTree struct + NodeMap map[string]*DirTreeNode + Root *DirTreeNode + func NewDirTree() *DirTree + func (d *DirTree) DebugDirTree() + func (d *DirTree) DeleteDir(path string) bool + func (d *DirTree) DeleteFile(path string) bool + func (d *DirTree) InsertFile(path string) bool + func (d *DirTree) MkDir(path string) bool + type DirTreeInterface interface + DeleteDir func(path string) bool + DeleteFile func(filename string) bool + InsertFile func(path string) bool + MkDir func(path string) bool + type DirTreeNode struct