Mkdir creates the bucket if it doesn't exist
(ctx context.Context, dir string)
| 552 | |
| 553 | // Mkdir creates the bucket if it doesn't exist |
| 554 | func (f *Fs) Mkdir(ctx context.Context, dir string) error { |
| 555 | bucketName, _ := f.split(dir) |
| 556 | return f.makeBucket(ctx, bucketName) |
| 557 | } |
| 558 | |
| 559 | // makeBucket creates the bucket if it doesn't exist |
| 560 | func (f *Fs) makeBucket(ctx context.Context, bucketName string) error { |
nothing calls this directly
no test coverage detected