MCPcopy
hub / github.com/rclone/rclone / Dir

Struct Dir

fs/dir.go:9–17  ·  view source on GitHub ↗

Dir describes an unspecialized directory for directory/container/bucket lists

Source from the content-addressed store, hash-verified

7
8// Dir describes an unspecialized directory for directory/container/bucket lists
9type Dir struct {
10 f Info // Fs this directory is part of
11 remote string // name of the directory
12 modTime time.Time // modification or creation time - IsZero for unknown
13 size int64 // size of directory and contents or -1 if unknown
14 items int64 // number of objects or -1 for unknown
15 id string // optional ID
16 parent string // optional parent directory ID
17}
18
19// NewDir creates an unspecialized Directory object
20//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected