type archive/zip.fileListEntry
18 uses
archive/zip (current package)
reader.go#L39: fileList []fileListEntry
reader.go#L632: type fileListEntry struct {
reader.go#L642: func (e *fileListEntry) stat() fileInfoDirEntry {
reader.go#L650: func (f *fileListEntry) Name() string { _, elem, _ := split(f.name); return elem }
reader.go#L651: func (f *fileListEntry) Size() int64 { return 0 }
reader.go#L652: func (f *fileListEntry) ModTime() time.Time { return time.Time{} }
reader.go#L653: func (f *fileListEntry) Mode() fs.FileMode { return fs.ModeDir | 0555 }
reader.go#L654: func (f *fileListEntry) Type() fs.FileMode { return fs.ModeDir }
reader.go#L655: func (f *fileListEntry) IsDir() bool { return true }
reader.go#L656: func (f *fileListEntry) Sys() interface{} { return nil }
reader.go#L658: func (f *fileListEntry) Info() (fs.FileInfo, error) { return f, nil }
reader.go#L681: r.fileList = append(r.fileList, fileListEntry{name, file})
reader.go#L684: r.fileList = append(r.fileList, fileListEntry{dir + "/", nil})
reader.go#L733: var dotFile = &fileListEntry{name: "./"}
reader.go#L735: func (r *Reader) openLookup(name string) *fileListEntry {
reader.go#L755: func (r *Reader) openReadDir(dir string) []fileListEntry {
reader.go#L769: e *fileListEntry
reader.go#L770: files []fileListEntry
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |