restic/internal/fs/preallocate_other.go
2025-11-30 11:53:23 +01:00

11 lines
236 B
Go

//go:build !linux && !darwin
package fs
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)
}