CleanUp the trash in the Fs
(ctx context.Context)
| 1735 | |
| 1736 | // CleanUp the trash in the Fs |
| 1737 | func (f *Fs) CleanUp(ctx context.Context) error { |
| 1738 | f.CleanUpCache(false) |
| 1739 | |
| 1740 | do := f.Fs.Features().CleanUp |
| 1741 | if do == nil { |
| 1742 | return nil |
| 1743 | } |
| 1744 | |
| 1745 | return do(ctx) |
| 1746 | } |
| 1747 | |
| 1748 | // About gets quota information from the Fs |
| 1749 | func (f *Fs) About(ctx context.Context) (*fs.Usage, error) { |
nothing calls this directly
no test coverage detected