fix slashes

This commit is contained in:
Christoph Polcin
2014-10-23 14:26:08 +02:00
parent d4b8ebb4b2
commit 7caa8c8b7d
3 changed files with 9 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ func main() {
switch *m {
case "LIST", "PROPFIND":
if files, err := c.ReadDir(path); err == nil {
fmt.Println(len(files))
fmt.Println(fmt.Sprintf("Resources: %d - %s", len(files), path))
for _, f := range files {
fmt.Println(f)
}