dnscrypt-proxy/vendor/github.com/dchest/safefile
Frank Denis 7740e9d3bc Update dep and deps 2018-08-10 01:39:33 +02:00
..
.travis.yml Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
LICENSE Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
README.md Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
appveyor.yml Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
rename.go Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
rename_nonatomic.go Preliminary support for remote sources 2018-01-13 23:52:44 +01:00
safefile.go Preliminary support for remote sources 2018-01-13 23:52:44 +01:00

README.md

safefile

Build Status Windows Build status

Go package safefile implements safe "atomic" saving of files.

Instead of truncating and overwriting the destination file, it creates a temporary file in the same directory, writes to it, and then renames the temporary file to the original name when calling Commit.

Installation

$ go get github.com/dchest/safefile

Documentation

https://godoc.org/github.com/dchest/safefile

Example

f, err := safefile.Create("/home/ken/report.txt", 0644)
if err != nil {
	// ...
}
// Created temporary file /home/ken/sf-ppcyksu5hyw2mfec.tmp

defer f.Close()

_, err = io.WriteString(f, "Hello world")
if err != nil {
	// ...
}
// Wrote "Hello world" to /home/ken/sf-ppcyksu5hyw2mfec.tmp

err = f.Commit()
if err != nil {
    // ...
}
// Renamed /home/ken/sf-ppcyksu5hyw2mfec.tmp to /home/ken/report.txt