type Interface interface {
// Chmod changes the mode of the given file, implementing the same// semantics as os.Chmod.
Chmod(path string, filemode os.FileMode) error
}
Interface is something that knows how to run the chmod system call.
It is non-recursive.