コード例 #1
0
ファイル: hello_fs.go プロジェクト: andrewgaul/fuse
func (fs *helloFS) patchAttributes(
	attr *fuseops.InodeAttributes) {
	now := fs.Clock.Now()
	attr.Atime = now
	attr.Mtime = now
	attr.Crtime = now
}