docstore/pkg/scan/helper.go
2019-05-04 21:58:02 +02:00

12 lines
186 B
Go

// Copyright (C) 2019 Marius Schellenberger
package scan
import (
"path/filepath"
"strings"
)
func isPDF(path string) bool {
return strings.ToLower(filepath.Ext(path)) == pdfExt
}