PiwigoDirectoryUploader/internal/pkg/localFileStructure/checksumCalculator.go

31 lines
594 B
Go
Raw Normal View History

package localFileStructure
import (
"crypto/md5"
"fmt"
"github.com/sirupsen/logrus"
"io"
"os"
)
func calculateFileCheckSums(filePath string) (string, error) {
2019-02-27 23:26:18 +01:00
file, err := os.Open(filePath)
if err != nil {
logrus.Errorf("Could not open file %s", filePath)
return "", err
}
2019-02-27 23:26:18 +01:00
defer file.Close()
2019-02-27 23:26:18 +01:00
hash := md5.New()
if _, err := io.Copy(hash, file); err != nil {
logrus.Errorf("Could calculate md5 sum of file %s", filePath)
return "", err
}
2019-02-27 23:26:18 +01:00
md5sum := fmt.Sprintf("%x", hash.Sum(nil))
logrus.Tracef("Calculated md5 sum of %s - %s", filePath, md5sum)
return md5sum, nil
}