volume_create.go 378 B

1234567891011121314151617
  1. // +build !linux
  2. package storage
  3. import (
  4. "os"
  5. "github.com/chrislusf/seaweedfs/weed/glog"
  6. )
  7. func createVolumeFile(fileName string, preallocate int64) (file *os.File, e error) {
  8. file, e = os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
  9. if preallocate > 0 {
  10. glog.V(0).Infof("Preallocated disk space for %s is not supported", fileName)
  11. }
  12. return file, e
  13. }