vendor/github.com/spf13/afero/httpFs.go
changeset 256 6d9efbef00a9
parent 242 2a9ec03fe5a1
child 260 445e01aede7e
equal deleted inserted replaced
255:4f153a23adab 256:6d9efbef00a9
    65 
    65 
    66 func (h HttpFs) Chmod(name string, mode os.FileMode) error {
    66 func (h HttpFs) Chmod(name string, mode os.FileMode) error {
    67 	return h.source.Chmod(name, mode)
    67 	return h.source.Chmod(name, mode)
    68 }
    68 }
    69 
    69 
       
    70 func (h HttpFs) Chown(name string, uid, gid int) error {
       
    71 	return h.source.Chown(name, uid, gid)
       
    72 }
       
    73 
    70 func (h HttpFs) Chtimes(name string, atime time.Time, mtime time.Time) error {
    74 func (h HttpFs) Chtimes(name string, atime time.Time, mtime time.Time) error {
    71 	return h.source.Chtimes(name, atime, mtime)
    75 	return h.source.Chtimes(name, atime, mtime)
    72 }
    76 }
    73 
    77 
    74 func (h HttpFs) Mkdir(name string, perm os.FileMode) error {
    78 func (h HttpFs) Mkdir(name string, perm os.FileMode) error {