コード例 #1
0
func getPathStartMenu() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.StartMenu(), "gonwjs")
	return
}
コード例 #2
0
func getPathTemp() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.Documents(), "gonwjs")
	return
}
コード例 #3
0
func getPathDesktop() (path string) {
	folder := new(gowin.ShellFolders)
	path = folder.Desktop()
	return
}
コード例 #4
0
func getPathInstall() (path string) {
	folder := new(gowin.ShellFolders)
	path = filepath.Join(folder.AppData(), "gonwjs")
	return
}