(ctx any, from any, to string, override bool)
| 63 | } |
| 64 | |
| 65 | func (d Drive) Move(ctx any, from any, to string, override bool) Entry { |
| 66 | vm := GetVM(ctx) |
| 67 | entry, e := d.d.Move(GetTaskCtx(ctx), GetEntry(from), to, override) |
| 68 | if e != nil { |
| 69 | throwForVM(vm, e) |
| 70 | } |
| 71 | return NewEntry(entry) |
| 72 | } |
| 73 | |
| 74 | func (d Drive) List(ctx any, path string) []Entry { |
| 75 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected