File Operations in Go: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
=Overview=
=Overview=


Basic file read and write, by reading or writing the entire file into and from memory, is provided by the [[Go Package ioutil|<code>ioutil</code> package]]. An entire file is read in memory with <code>ioutil.ReadFile()</code> and memory content can be written into a file with <code>ioutil.WriteFile()</code>: {{Internal|Go_Package_ioutil#Basic_File_Read_and_Write|Basic File Read and Write with <tt>ioutil</tt>}}
Basic file read and write, by reading or writing the entire file into and from memory, is also provided by the [[Go Package ioutil|<code>ioutil</code> package]], but its <code>[[Go Package ioutil#Overview|ioutil.ReadFile]]</code> and <code>[[Go Package ioutil#Overview|ioutil.WriteFile]]</code> are deprecated since Go 1.16.

Revision as of 17:59, 25 August 2023

Internal

Overview

Basic file read and write, by reading or writing the entire file into and from memory, is also provided by the ioutil package, but its ioutil.ReadFile and ioutil.WriteFile are deprecated since Go 1.16.