You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
405 B
27 lines
405 B
2 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func createFile(fileContents string) {
|
||
|
file, err := os.Create("weather.json")
|
||
|
if err != nil {
|
||
|
log.Fatalf("failed creating file: %s", err)
|
||
|
}
|
||
|
defer file.Close()
|
||
|
|
||
|
_, err = file.WriteString(fileContents)
|
||
|
if err != nil {
|
||
|
log.Fatalf("failed writing to file: %s", err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func removeFile(file string) {
|
||
|
e := os.Remove(file)
|
||
|
if e != nil {
|
||
|
log.Fatal(e)
|
||
|
}
|
||
|
}
|