forked from mirror/afero
Fix zipfs.Readdir and zipfs.Readdirnames
If count == 0 all files should be returned as of https://golang.org/pkg/os/#File.Readdir
This commit is contained in:
parent
ceb6a5e372
commit
5fd16ea9f1
|
@ -130,7 +130,7 @@ func (f *File) Readdir(count int) (fi []os.FileInfo, err error) {
|
|||
}
|
||||
for _, zipfile := range zipfiles {
|
||||
fi = append(fi, zipfile.FileInfo())
|
||||
if count >= 0 && len(fi) >= count {
|
||||
if count > 0 && len(fi) >= count {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
@ -144,7 +144,7 @@ func (f *File) Readdirnames(count int) (names []string, err error) {
|
|||
}
|
||||
for filename := range zipfiles {
|
||||
names = append(names, filename)
|
||||
if count >= 0 && len(names) >= count {
|
||||
if count > 0 && len(names) >= count {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue