mirror of
https://github.com/nxshock/csv2db.git
synced 2024-11-27 03:31:00 +05:00
26 lines
417 B
Go
26 lines
417 B
Go
package main
|
|
|
|
import (
|
|
"archive/zip"
|
|
"fmt"
|
|
)
|
|
|
|
func processZipFile(filePath string) error {
|
|
r, err := zip.OpenReader(filePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(r.File) != 1 {
|
|
return fmt.Errorf("supported only one file in archive, got %d files", len(r.File))
|
|
}
|
|
|
|
zipFileReader, err := r.File[0].Open()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer zipFileReader.Close()
|
|
|
|
return processReader(zipFileReader)
|
|
}
|