func NopCloser(r io.Reader) io.ReadCloser { … } func ReadAll(r io.Reader) ([]byte, error) { … } func ReadDir(dirname string) ([]string, error) { … } func ReadFile(filename string) ([]byte, error) { … } func MkdirTemp(dir, pattern string) (string, error) { … } func WriteFile(filename string, data []byte) error { … }