mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +00:00
11 lines
238 B
Go
11 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)
|
|
}
|