Files
opencloud/vendor/github.com/gookit/goutil/sysutil/sysutil_windows.go
dependabot[bot] 5ebc596352 Bump github.com/gookit/config/v2 from 2.1.8 to 2.2.2
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.1.8 to 2.2.2.
- [Release notes](https://github.com/gookit/config/releases)
- [Commits](https://github.com/gookit/config/compare/v2.1.8...v2.2.2)

---
updated-dependencies:
- dependency-name: github.com/gookit/config/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-06-13 10:54:58 +02:00

58 lines
1.1 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//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)
}