You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//go:build windows
|
|
|
|
|
|
|
|
|
|
package nsys
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
}
|