(ctx any, path string, size int64, override bool, reader any)
| 36 | } |
| 37 | |
| 38 | func (d Drive) Save(ctx any, path string, size int64, override bool, reader any) Entry { |
| 39 | vm := GetVM(ctx) |
| 40 | entry, e := d.d.Save(GetTaskCtx(ctx), path, size, override, GetReader(reader)) |
| 41 | if e != nil { |
| 42 | throwForVM(vm, e) |
| 43 | } |
| 44 | return NewEntry(entry) |
| 45 | } |
| 46 | |
| 47 | func (d Drive) MakeDir(ctx any, path string) Entry { |
| 48 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected