Enable go modules (#32)

1 file changed
tree: b9117c41772c79fb94933ccfa48d70a4989405f6
  1. go.mod
  2. LICENSE
  3. osext.go
  4. osext_go18.go
  5. osext_plan9.go
  6. osext_procfs.go
  7. osext_sysctl.go
  8. osext_test.go
  9. osext_windows.go
  10. README.md
README.md

Extensions to the “os” package.

GoDoc

Find the current Executable and ExecutableFolder.

As of go1.8 the Executable function may be found in os. The Executable function in the std lib os package is used if available.

There is sometimes utility in finding the current executable file that is running. This can be used for upgrading the current executable or finding resources located relative to the executable file. Both working directory and the os.Args[0] value are arbitrary and cannot be relied on; os.Args[0] can be “faked”.

Multi-platform and supports:

  • Linux
  • OS X
  • Windows
  • Plan 9
  • BSDs.