volume_create.go 464 B

1234567891011121314151617181920
  1. // +build !linux,!windows
  2. package backend
  3. import (
  4. "os"
  5. "github.com/chrislusf/seaweedfs/weed/glog"
  6. )
  7. func CreateVolumeFile(fileName string, preallocate int64, memoryMapSizeMB uint32) (BackendStorageFile, error) {
  8. file, e := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0644)
  9. if e != nil {
  10. return nil, e
  11. }
  12. if preallocate > 0 {
  13. glog.V(2).Infof("Preallocated disk space for %s is not supported", fileName)
  14. }
  15. return NewDiskFile(file), nil
  16. }