aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer_export.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command/filer_export.go')
-rw-r--r--weed/command/filer_export.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/weed/command/filer_export.go b/weed/command/filer_export.go
index c1a5dce7f..8a709ed1f 100644
--- a/weed/command/filer_export.go
+++ b/weed/command/filer_export.go
@@ -169,6 +169,16 @@ func printout(level int, entry *filer2.Entry) error {
print("| ")
}
}
- println(entry.FullPath.Name())
+ print(entry.FullPath.Name())
+ for _, chunk:=range entry.Chunks{
+ print("[")
+ print(chunk.FileId)
+ print(",")
+ print(chunk.Offset)
+ print(",")
+ print(chunk.Size)
+ print(")")
+ }
+ println()
return nil
}