9951 explained code solutions for 126 technologies


golangHow to create a file


package main

import (
	"log"
	"os"
)

func main() {
	file, err := os.Create("/tmp/go.txt")
	if err != nil {
		log.Fatal(err)
	}
	defer file.Close()
}ctrl + c
"os"

include operating-system level library

"log"

packet logging implements a simple log pack. It defines a type of Logger with methods for formatting the output.

os.Create("/tmp/go.txt")

function is used to create file named file.txt

file.Close()

Closes the file after file operations are complete.