Use href instead of displayname for Name()

This commit is contained in:
Yasuhiro Matsumoto 2015-12-09 17:08:29 +09:00
parent fa9482a9f2
commit 33816041d6

View File

@ -6,7 +6,9 @@ import (
"encoding/xml"
"io"
"net/http"
"net/url"
"os"
pathpkg "path"
"strings"
"time"
)
@ -84,7 +86,11 @@ func (c *Client) ReadDir(path string) ([]os.FileInfo, error) {
if p := getProps(r, "200"); p != nil {
f := new(File)
f.name = p.Name
if ps, err := url.QueryUnescape(r.Href); err == nil {
f.name = pathpkg.Base(ps)
} else {
f.name = p.Name
}
f.path = path + f.name
if p.Type.Local == "collection" {