sparse_windows.go 226 B

12345678910111213141516
  1. package server
  2. import (
  3. "os"
  4. "golang.org/x/sys/windows"
  5. )
  6. func setSparse(file *os.File) error {
  7. return windows.DeviceIoControl(
  8. windows.Handle(file.Fd()), windows.FSCTL_SET_SPARSE,
  9. nil, 0,
  10. nil, 0,
  11. nil, nil,
  12. )
  13. }