예제 #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
}