Merge pull request #2 from mattn/handle-href

look href if displayname not exists

thanks!
This commit is contained in:
Christoph Polcin 2015-12-09 09:56:31 +01:00
commit b12f1c1b33

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" {