fehlerbehebung
This commit is contained in:
parent
52331b2fa0
commit
481092554b
10
file.go
10
file.go
|
@ -1,6 +1,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
@ -14,7 +15,14 @@ func fileRead(src string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func fileAddLine(input string, filepath string) {
|
func fileAddLine(input string, filepath string) {
|
||||||
file, err := os.OpenFile(filepath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
_, err := os.Stat(filepath)
|
||||||
|
if errors.Is(err, os.ErrNotExist) {
|
||||||
|
_, err = os.Create(filepath)
|
||||||
|
errorPanic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var file *os.File
|
||||||
|
file, err = os.OpenFile(filepath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
||||||
errorPanic(err)
|
errorPanic(err)
|
||||||
|
|
||||||
_, err = file.WriteString(input + "\n")
|
_, err = file.WriteString(input + "\n")
|
||||||
|
|
Loading…
Reference in New Issue