Build the directory tree
| 17 | |
| 18 | // Build the directory tree |
| 19 | type FileNode struct { |
| 20 | fs.Inode |
| 21 | |
| 22 | accessor accessors.FileSystemAccessor |
| 23 | ospath *accessors.OSPath |
| 24 | |
| 25 | options *Options |
| 26 | } |
| 27 | |
| 28 | func (self *FileNode) Getattr(ctx context.Context, |
| 29 | f fs.FileHandle, out *fuse.AttrOut) syscall.Errno { |
nothing calls this directly
no outgoing calls
no test coverage detected