Beispiel #1
0
func SaveFile(cols []string, line string, excel *ge.Goexcel) {
	CheckColno(cols, 2, 2, line)
	err := excel.Save(cols[1])

	if err != nil {
		fmt.Fprintf(os.Stderr, "file write error :"+line)
		os.Exit(2)
	}
}