mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-23 00:56:29 +03:00
0df5effdcf
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com> Co-authored-by: Stephen Robinson <stephen@drsudo.com>
16 lines
358 B
Go
16 lines
358 B
Go
// +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) {
|
|
err := exec.Command("rundll32", "url.dll,FileProtocolHandler", path).Start()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return "Opened in default system viewer", nil
|
|
}
|