File Operations in Go
Jump to navigation
Jump to search
Internal
Overview
Basic file read and write, by reading or writing the entire file into and from memory, is provided by the ioutil
package. An entire file is read in memory with ioutil.ReadFile()
and memory content can be written into a file with ioutil.WriteFile()
: