Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Create Temp Files and Directories in Golang

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

import "io/ioutil"
tempFile, err := ioutil.TempFile("", "example")
tempFile
&{0xc00061c4e0}
tempFile.Name()
/tmp/example3193020307
ioutil.TempDir("", "test*")
/tmp/test2789120833<nil>
ioutil.TempDir("", "test")
/tmp/test1160040211<nil>