()
| 127 | } |
| 128 | |
| 129 | func (this *FileReader) LastModified() int64 { |
| 130 | stat, err := this.fp.Stat() |
| 131 | if err != nil { |
| 132 | return 0 |
| 133 | } |
| 134 | return stat.ModTime().Unix() |
| 135 | } |
| 136 | |
| 137 | func (this *FileReader) HeaderSize() int64 { |
| 138 | return int64(this.headerSize) |