(parentID uint64, name string)
| 143 | } |
| 144 | |
| 145 | func (cfs CFS) lookup(parentID uint64, name string) (*Node, error) { |
| 146 | return getInode(cfs.db, parentID, name) |
| 147 | } |
| 148 | |
| 149 | // list returns the children of the node with id 'parentID'. |
| 150 | // Dirent consists of: |