mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-04 09:19:44 +00:00
f8979fe7af
* golint and minor changes to make code readable
17 lines
325 B
Go
17 lines
325 B
Go
package fileutils
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// UpdateFile appends a byte slice to a file
|
|
func UpdateFile(filename string, data []byte) error {
|
|
|
|
f, err := os.OpenFile(filename, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
|
|
|
dataWNewline := append(data, []byte("\n")...)
|
|
|
|
_, err = f.Write(dataWNewline)
|
|
err = f.Close()
|
|
return err
|
|
}
|