You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
excelize-formula/file.go

51 lines
1.4 KiB

9 years ago
package excelize
import (
"archive/zip"
"bytes"
"os"
)
// CreateFile provide function to create new file by default template
9 years ago
// For example:
// xlsx := CreateFile()
func CreateFile() map[string]string {
file := make(map[string]string)
file = saveFileList(file, `_rels/.rels`, templateRels)
file = saveFileList(file, `docProps/app.xml`, templateDocpropsApp)
file = saveFileList(file, `docProps/core.xml`, templateDocpropsCore)
file = saveFileList(file, `xl/_rels/workbook.xml.rels`, templateWorkbookRels)
file = saveFileList(file, `xl/theme/theme1.xml`, templateTheme)
file = saveFileList(file, `xl/worksheets/sheet1.xml`, templateSheet)
file = saveFileList(file, `xl/styles.xml`, templateStyles)
file = saveFileList(file, `xl/workbook.xml`, templateWorkbook)
file = saveFileList(file, `[Content_Types].xml`, templateContentTypes)
9 years ago
return file
}
// Save after create or update to an xlsx file at the provided path.
func Save(files map[string]string, name string) error {
9 years ago
buf := new(bytes.Buffer)
w := zip.NewWriter(buf)
for path, content := range files {
f, err := w.Create(path)
9 years ago
if err != nil {
return err
9 years ago
}
_, err = f.Write([]byte(content))
9 years ago
if err != nil {
return err
}
}
err := w.Close()
if err != nil {
return err
}
f, err := os.OpenFile(name, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0666)
if err != nil {
return err
}
buf.WriteTo(f)
return err
}