3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Golang ファイル入出力メモ

Last updated at Posted at 2018-07-24

偶にGolangを触るといつも忘れているので、一覧形式の備忘録

ファイル読み込み

  1. ioutil.ReadAll
  2. ioutil.ReadFile
  3. bufio.Reader - Read, ReadStringなどが使える
  4. os.File.Read

ファイル書き込み

  1. io.Copy
  2. ioutil.WriteFile
  3. bufio.Writer - Write, WriteStringなどが使える
  4. os.File.Write

ファイル作成・開く

  • os.Open
    読み込み専用
  • os.OpenFile
    os.O_RDONLY, os.O_WRONLY, os.O_RDWR, os.O_APPENDなどと、permissionを指定。書き込みで開いた場合、os.O_TRUNCを指定しないと、以前の内容をリフレッシュせずに上書きするので、書き込み内容が短い場合は以前の内容が残ってしまう。
  • os.Create
    新しいファイルを作成
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?