vendor/github.com/spf13/afero/afero.go
changeset 256 6d9efbef00a9
parent 242 2a9ec03fe5a1
child 260 445e01aede7e
equal deleted inserted replaced
255:4f153a23adab 256:6d9efbef00a9
    89 	Stat(name string) (os.FileInfo, error)
    89 	Stat(name string) (os.FileInfo, error)
    90 
    90 
    91 	// The name of this FileSystem
    91 	// The name of this FileSystem
    92 	Name() string
    92 	Name() string
    93 
    93 
    94 	//Chmod changes the mode of the named file to mode.
    94 	// Chmod changes the mode of the named file to mode.
    95 	Chmod(name string, mode os.FileMode) error
    95 	Chmod(name string, mode os.FileMode) error
       
    96 
       
    97 	// Chown changes the uid and gid of the named file.
       
    98 	Chown(name string, uid, gid int) error
    96 
    99 
    97 	//Chtimes changes the access and modification times of the named file
   100 	//Chtimes changes the access and modification times of the named file
    98 	Chtimes(name string, atime time.Time, mtime time.Time) error
   101 	Chtimes(name string, atime time.Time, mtime time.Time) error
    99 }
   102 }
   100 
   103