Package ioutil
import "io/ioutil"
Package files
ioutil.go tempfile.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.FileInfo, 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 TempFile
func TempFile(dir, prefix string) (f *os.File, err os.Error)
TempFile creates a new temporary file in the directory dir with a name beginning with prefix, opens the file for reading and writing, and returns the resulting *os.File. If dir is the empty string, TempFile uses the default directory for temporary files (see os.TempDir). Multiple programs calling TempFile simultaneously will not choose the same file. The caller can use f.Name() to find the name of the file. It is the caller's responsibility to remove the file when no longer needed.
func WriteFile
func WriteFile(filename string, data []byte, perm uint32) 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.
