1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-09 12:03:20 +00:00

Add Root() to Fs interface

This commit is contained in:
Nick Craig-Wood
2015-09-01 20:45:27 +01:00
parent cbc6bf6a89
commit 92745aa950
8 changed files with 47 additions and 0 deletions

View File

@@ -149,6 +149,14 @@ func (f *FsStorage) Name() string {
return f.name
}
// The root of the remote (as passed into NewFs)
func (f *FsStorage) Root() string {
if f.root == "" {
return f.bucket
}
return f.bucket + "/" + f.root
}
// String converts this FsStorage to a string
func (f *FsStorage) String() string {
if f.root == "" {