元芳怎么了
好的,我找到了解决方案1. 创建一个包含 nodefs.Node 的结构体: type my_root struct {nodefs.Node}初始化它 my = &my_root{Node: nodefs.NewDefaultNode()}建立连接和原始文件系统 con := nodefs.NewFileSystemConnector(my, nil) raw := fuse.NewRawFileSystem(con.RawFS())最后,启动保险丝 fs server, err := fuse.NewServer(raw, f.dir, optz)像这样:func (my_root) OpenDir(context *fuse.Context) ([]fuse.DirEntry, fuse.Status) {}func (my_root) Lookup(out *fuse.Attr, name string, context *fuse.Context) (node *nodefs.Inode, code fuse.Status)在第 1 步之后,像这样:server.WaitMount()我不需要这个。