Purge deletes all the files in the directory Optional interface: Only implement this if you have a way of deleting all the files quicker than just running Remove() on the result of List()
(ctx context.Context, dir string)
| 730 | // deleting all the files quicker than just running Remove() on the |
| 731 | // result of List() |
| 732 | func (f *Fs) Purge(ctx context.Context, dir string) error { |
| 733 | return f.purgeCheck(ctx, dir, false) |
| 734 | } |
| 735 | |
| 736 | // move a file or folder (srcFs, srcRemote, info) to (f, dstRemote) |
| 737 | // |
nothing calls this directly
no test coverage detected