Dir describes an unspecialized directory for directory/container/bucket lists
| 7 | |
| 8 | // Dir describes an unspecialized directory for directory/container/bucket lists |
| 9 | type 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 | // |
nothing calls this directly
no outgoing calls
no test coverage detected