attr := &fuse.Attr{ Mode: 0666, // rw-rw-rw- }
attr := &fuse.Attr{ Mtime: time.Now(), Atime: time.Now(), }
attr := &fuse.Attr{ Mode: 0666, // rw-rw-rw- Mtime: time.Now(), Atime: time.Now(), }In all of these examples, we use the Attr struct provided by the bazil.org.fuse package to set the attributes on the file or directory. We then pass this Attr struct to the appropriate FUSE API methods to apply the changes to the file system. Therefore, the package library in question is bazil.org.fuse.