mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
20 lines
513 B
Go
20 lines
513 B
Go
//go:build windows && (!linux || !darwin || !freebsd || !netbsd || !openbsd)
|
|
// +build windows
|
|
// +build !linux !darwin !freebsd !netbsd !openbsd
|
|
|
|
package sysopen
|
|
|
|
import "os/exec"
|
|
|
|
// Open opens `path` in default system vierwer.
|
|
func Open(path string) (string, error) {
|
|
proc := exec.Command("rundll32", "url.dll,FileProtocolHandler", path)
|
|
err := proc.Start()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
//nolint:errcheck
|
|
go proc.Wait() // Prevent zombies, see #219
|
|
return "Opened in default system viewer", nil
|
|
}
|