summaryrefslogtreecommitdiff
path: root/vendor/github.com/skratchdot/open-golang/open/exec_windows.go
blob: 59f56b0ca5e09f367fbe991c76577f1174bd7554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// +build windows

package open

import (
	"os"
	"os/exec"
	"path/filepath"
	"strings"
	"syscall"
)

var (
	cmd      = "url.dll,FileProtocolHandler"
	runDll32 = filepath.Join(os.Getenv("SYSTEMROOT"), "System32", "rundll32.exe")
)

func cleaninput(input string) string {
	r := strings.NewReplacer("&", "^&")
	return r.Replace(input)
}

func open(input string) *exec.Cmd {
	cmd := exec.Command(runDll32, cmd, input)
	cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
	return cmd
}

func openWith(input string, appName string) *exec.Cmd {
	cmd := exec.Command("cmd", "/C", "start", "", appName, cleaninput(input))
	cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
	return cmd
}