mirror of https://github.com/restic/restic.git
12 lines
238 B
Go
12 lines
238 B
Go
|
// +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)
|
||
|
}
|