-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathsysutil_windows.go
57 lines (46 loc) · 1.12 KB
/
sysutil_windows.go
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//go:build windows
// +build windows
package sysutil
import (
"errors"
"syscall"
"golang.org/x/sys/windows"
)
// IsWin system. linux windows darwin
func IsWin() bool { return true }
// IsWindows system. linux windows darwin
func IsWindows() bool { return true }
// IsMac system
func IsMac() bool { return false }
// IsDarwin system
func IsDarwin() bool { return false }
// IsLinux system
func IsLinux() bool { return false }
// Kill a process by pid
func Kill(pid int, signal syscall.Signal) error {
return errors.New("not support")
}
// ProcessExists check process exists by pid
func ProcessExists(pid int) bool {
panic("TIP: please use sysutil/process.Exists()")
}
// OpenURL Open file or browser URL
//
// - refers https://github.com/pkg/browser
//
// Mac:
//
// open 'https://github.com/inhere'
//
// Linux:
//
// xdg-open URL
// x-www-browser 'https://github.com/inhere'
//
// Windows:
//
// cmd /c start https://github.com/inhere
func OpenURL(url string) error {
// return exec.Command("cmd", "/C", "start", URL).Run()
return windows.ShellExecute(0, nil, windows.StringToUTF16Ptr(url), nil, nil, windows.SW_SHOWNORMAL)
}