mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-04 19:19:44 +00:00
ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
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
|
|
}
|