mirror of
https://github.com/chubin/wttr.in
synced 2025-01-12 03:58:45 +00:00
18 lines
375 B
Go
18 lines
375 B
Go
package util
|
|
|
|
import "os"
|
|
|
|
// RemoveFileIfExists removes filename if exists, or does nothing if the file
|
|
// is not there. Returns an error, if it occurred during deletion.
|
|
func RemoveFileIfExists(filename string) error {
|
|
_, err := os.Stat(filename)
|
|
if err != nil {
|
|
if !os.IsNotExist(err) {
|
|
return err
|
|
}
|
|
// no db file
|
|
return nil
|
|
}
|
|
|
|
return os.Remove(filename)
|
|
}
|