-func fileCreatorFromFilename(fn string) string {
- ext := strings.Split(fn, ".")
- code := fileCreatorCodes[ext[len(ext)-1]]
- if code == "" {
- code = defaultCreator
- }
-
- return code
-}
-
-func getFileNameList(filePath string) ([]Field, error) {
- var fields []Field
-