rclone/vendor/github.com/kardianos/osext
2019-04-15 20:12:56 +01:00
..
go.mod vendor: update all dependencies 2019-04-15 20:12:56 +01:00
LICENSE added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext_go18.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext_plan9.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext_procfs.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext_sysctl.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext_windows.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
osext.go added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00
README.md added dependency github.com/sevlyar/go-daemon 2018-03-04 14:06:07 +03:00

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.