MCPcopy
hub / github.com/lxn/walk / Directory

Struct Directory

examples/filebrowser/filebrowser.go:19–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17)
18
19type Directory struct {
20 name string
21 parent *Directory
22 children []*Directory
23}
24
25func NewDirectory(name string, parent *Directory) *Directory {
26 return &Directory{name: name, parent: parent}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected