Browse Source

Size() returns 0 if file doesn't exist

pull/1842/head
Jae Kwon 8 years ago
parent
commit
916f3d789b
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      autofile.go

+ 10
- 0
autofile.go View File

@ -107,6 +107,16 @@ func (af *AutoFile) openFile() error {
func (af *AutoFile) Size() (int64, error) {
af.mtx.Lock()
defer af.mtx.Unlock()
if af.file == nil {
err := af.openFile()
if err != nil {
if err == os.ErrNotExist {
return 0, nil
} else {
return -1, err
}
}
}
stat, err := af.file.Stat()
if err != nil {
return -1, err


Loading…
Cancel
Save