mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
9 lines
194 B
Go
9 lines
194 B
Go
package directory
|
|
|
|
import "context"
|
|
|
|
// Size walks a directory tree and returns its total size in bytes.
|
|
func Size(ctx context.Context, dir string) (int64, error) {
|
|
return calcSize(ctx, dir)
|
|
}
|