25 lines
407 B
Go
25 lines
407 B
Go
package utils
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
// DoesFileExist checks if a file exists.
|
|
func DoesFileExist(fileName string) bool {
|
|
_, err := os.Stat(fileName)
|
|
if os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// EnsureExists creates if the file does not already exist.
|
|
func EnsureExists(fileName string) {
|
|
if DoesFileExist(fileName) {
|
|
return
|
|
}
|
|
|
|
ioutil.WriteFile(fileName, []byte(""), 0644)
|
|
}
|