mediaapi/fileutils: Fix and comment os.IsNotExist bug

main
Robert Swain 2017-05-31 07:08:21 +02:00
parent 63ccd770c6
commit a4300eefc4
1 changed files with 3 additions and 1 deletions

View File

@ -76,7 +76,9 @@ func MoveFileWithHashCheck(tmpDir types.Path, mediaMetadata *types.MediaMetadata
}
var stat os.FileInfo
if stat, err = os.Stat(finalPath); os.IsExist(err) {
// Note: The double-negative is intentional as os.IsExist(err) != !os.IsNotExist(err).
// The functions are error checkers to be used in different cases.
if stat, err = os.Stat(finalPath); !os.IsNotExist(err) {
duplicate = true
if stat.Size() == int64(mediaMetadata.FileSizeBytes) {
return types.Path(finalPath), duplicate, nil