github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/backend/local/preallocate_other.go (about)

     1  //+build !windows,!linux
     2  
     3  package local
     4  
     5  import "os"
     6  
     7  // preAllocate the file for performance reasons
     8  func preAllocate(size int64, out *os.File) error {
     9  	return nil
    10  }