2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-28 14:39:01 +00:00
restic/internal/fs/preallocate_other.go

13 lines
261 B
Go
Raw Normal View History

2022-03-28 20:23:47 +00:00
//go:build !linux && !darwin
// +build !linux,!darwin
2021-02-02 14:43:40 +00:00
package fs
import "os"
2021-02-02 14:43:40 +00:00
func PreallocateFile(wr *os.File, size int64) error {
// Maybe truncate can help?
// Windows: This calls SetEndOfFile which preallocates space on disk
return wr.Truncate(size)
}