2fa1db4345
It seems this can fail in some casees, but proceed with the download anyway.
17 lines
307 B
Go
17 lines
307 B
Go
package server
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func setSparse(file *os.File) {
|
|
// exFat (and other FS types) don't support sparse files, so ignore errors
|
|
windows.DeviceIoControl( //nolint:errcheck
|
|
windows.Handle(file.Fd()), windows.FSCTL_SET_SPARSE,
|
|
nil, 0,
|
|
nil, 0,
|
|
nil, nil,
|
|
)
|
|
}
|