(ctx any, from any, to string, override bool)
| 54 | } |
| 55 | |
| 56 | func (d Drive) Copy(ctx any, from any, to string, override bool) Entry { |
| 57 | vm := GetVM(ctx) |
| 58 | entry, e := d.d.Copy(GetTaskCtx(ctx), GetEntry(from), to, override) |
| 59 | if e != nil { |
| 60 | throwForVM(vm, e) |
| 61 | } |
| 62 | return NewEntry(entry) |
| 63 | } |
| 64 | |
| 65 | func (d Drive) Move(ctx any, from any, to string, override bool) Entry { |
| 66 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected