split returns bucket and bucketPath from the rootRelativePath relative to f.root
(rootRelativePath string)
| 401 | // split returns bucket and bucketPath from the rootRelativePath |
| 402 | // relative to f.root |
| 403 | func (f *Fs) split(rootRelativePath string) (bucketName, bucketPath string) { |
| 404 | return bucket.Split(path.Join(f.root, rootRelativePath)) |
| 405 | } |
| 406 | |
| 407 | // split returns bucket and bucketPath from the object |
| 408 | func (o *Object) split() (bucket, bucketPath string) { |