Overview

Package ioutil implements some I/O utility functions.

Index

Package files

tempfile.go

Discard is an io.Writer on which all Write calls succeed without doing anything.

func

  1. func NopCloser(r .Reader) .ReadCloser

NopCloser returns a ReadCloser with a no-op Close method wrapping the provided
Reader r.

func

  1. func ReadAll(r .Reader) ([], error)


Example:

  1. r := strings.NewReader("Go is a general-purpose language designed with systems programming in mind.")
  2. b, err := ioutil.ReadAll(r)
  3. if err != nil {
  4. log.Fatal(err)
  5. fmt.Printf("%s", b)
  6. // Output:
  7. // Go is a general-purpose language designed with systems programming in mind.

ReadDir reads the directory named by dirname and returns a list of directory
entries sorted by filename.


Example:

  1. files, err := ioutil.ReadDir(".")
  2. if err != nil {
  3. log.Fatal(err)
  4. }
  5. for _, file := range files {
  6. }

func

  1. func ReadFile(filename ) ([]byte, )

ReadFile reads the file named by filename and returns the contents. A successful
call returns err == nil, not err == EOF. Because ReadFile reads the whole file,
it does not treat an EOF from Read as an error to be reported.


Example:

  1. content, err := ioutil.ReadFile("testdata/hello")
  2. if err != nil {
  3. log.Fatal(err)
  4. }
  5. fmt.Printf("File contents: %s", content)
  6. // Output:
  7. // File contents: Hello, Gophers!

func

TempDir creates a new temporary directory in the directory dir with a name
beginning with prefix and returns the path of the new directory. If dir is the
empty string, TempDir uses the default directory for temporary files (see
os.TempDir). Multiple programs calling TempDir simultaneously will not choose
the same directory. It is the caller’s responsibility to remove the directory
when no longer needed.


Example:

  1. content := []byte("temporary file's content")
  2. if err != nil {
  3. log.Fatal(err)
  4. }
  5. defer os.RemoveAll(dir) // clean up
  6. tmpfn := filepath.Join(dir, "tmpfile")
  7. if err := ioutil.WriteFile(tmpfn, content, 0666); err != nil {
  8. log.Fatal(err)
  9. }

  1. func TempFile(dir, prefix string) (f *.File, err )

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 pathname of the file. It is the caller’s responsibility to remove the
file when no longer needed.


Example:

  1. content := []byte("temporary file's content")
  2. tmpfile, err := ioutil.TempFile("", "example")
  3. if err != nil {
  4. log.Fatal(err)
  5. }
  6. defer os.Remove(tmpfile.Name()) // clean up
  7. if _, err := tmpfile.Write(content); err != nil {
  8. log.Fatal(err)
  9. }
  10. if err := tmpfile.Close(); err != nil {
  11. log.Fatal(err)

func