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