google cloud storage: Make operations on single files work

This commit is contained in:
Nick Craig-Wood 2014-07-14 10:45:28 +01:00
parent a1732c21d8
commit b72fc69fbe
1 changed files with 14 additions and 14 deletions

View File

@ -15,6 +15,7 @@ import (
"fmt"
"io"
"net/http"
"path"
"regexp"
"strings"
"time"
@ -139,20 +140,19 @@ func NewFs(name, root string) (fs.Fs, error) {
if f.root != "" {
f.root += "/"
// Check to see if the object exists
// FIXME
// _, _, err = f.svc.Object(bucket, directory)
// if err == nil {
// remote := path.Base(directory)
// f.root = path.Dir(directory)
// if f.root == "." {
// f.root = ""
// } else {
// f.root += "/"
// }
// obj := f.NewFsObject(remote)
// // return a Fs Limited to this object
// return fs.NewLimited(f, obj), nil
// }
_, err = f.svc.Objects.Get(bucket, directory).Do()
if err == nil {
remote := path.Base(directory)
f.root = path.Dir(directory)
if f.root == "." {
f.root = ""
} else {
f.root += "/"
}
obj := f.NewFsObject(remote)
// return a Fs Limited to this object
return fs.NewLimited(f, obj), nil
}
}
return f, nil
}