mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
13 lines
267 B
Go
13 lines
267 B
Go
//go:build !linux && !darwin
|
|
// +build !linux,!darwin
|
|
|
|
package restorer
|
|
|
|
import "os"
|
|
|
|
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)
|
|
}
|