Package ioutil
import "io/ioutil"
Package files
ioutil.gofunc ReadAll
func ReadAll(r io.Reader) ([]byte, os.Error)
ReadAll reads from r until an error or EOF and returns the data it read.
func ReadDir
func ReadDir(dirname string) ([]*os.Dir, os.Error)
ReadDir reads the directory named by dirname and returns a list of sorted directory entries.
func ReadFile
func ReadFile(filename string) ([]byte, os.Error)
ReadFile reads the file named by filename and returns the contents.
func WriteFile
func WriteFile(filename string, data []byte, perm int) os.Error
WriteFile writes data to a file named by filename. If the file does not exist, WriteFile creates it with permissions perm; otherwise WriteFile truncates it before writing.
