mirror of https://github.com/chubin/wttr.in
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.
19 lines
375 B
19 lines
375 B
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)
|
|
}
|