func getPathStartMenu() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.StartMenu(), "gonwjs")
	return
}
func getPathTemp() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.Documents(), "gonwjs")
	return
}
func getPathDesktop() (path string) {
	folder := new(gowin.ShellFolders)
	path = folder.Desktop()
	return
}
func getPathInstall() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.AppData(), "gonwjs")
	return
}