(ctx any, path string)
| 45 | } |
| 46 | |
| 47 | func (d Drive) MakeDir(ctx any, path string) Entry { |
| 48 | vm := GetVM(ctx) |
| 49 | entry, e := d.d.MakeDir(GetContext(ctx), path) |
| 50 | if e != nil { |
| 51 | throwForVM(vm, e) |
| 52 | } |
| 53 | return NewEntry(entry) |
| 54 | } |
| 55 | |
| 56 | func (d Drive) Copy(ctx any, from any, to string, override bool) Entry { |
| 57 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected