summaryrefslogtreecommitdiff
path: root/vendor/github.com/skratchdot/open-golang/open/exec_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/skratchdot/open-golang/open/exec_windows.go')
-rw-r--r--vendor/github.com/skratchdot/open-golang/open/exec_windows.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/github.com/skratchdot/open-golang/open/exec_windows.go b/vendor/github.com/skratchdot/open-golang/open/exec_windows.go
deleted file mode 100644
index 59f56b0..0000000
--- a/vendor/github.com/skratchdot/open-golang/open/exec_windows.go
+++ /dev/null
@@ -1,33 +0,0 @@
-// +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
-}