Beispiel #1
0
func OpenFile(cols []string, line string, excel *ge.Goexcel) {
	CheckColno(cols, 2, 2, line)
	err := excel.OpenFile(cols[1])
	if err != nil {
		fmt.Fprintf(os.Stderr, "file not found :"+line)
		os.Exit(2)
	}
}