33 lines
		
	
	
		
			851 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			851 B
		
	
	
	
		
			Go
		
	
	
// Copyright 2012 The Go Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
// Extensions to the standard "os" package.
 | 
						|
package osext
 | 
						|
 | 
						|
import "path/filepath"
 | 
						|
 | 
						|
// Executable returns an absolute path that can be used to
 | 
						|
// re-invoke the current program.
 | 
						|
// It may not be valid after the current program exits.
 | 
						|
func Executable() (string, error) {
 | 
						|
	p, err := executable()
 | 
						|
	return filepath.Clean(p), err
 | 
						|
}
 | 
						|
 | 
						|
// Returns same path as Executable, returns just the folder
 | 
						|
// path. Excludes the executable name.
 | 
						|
func ExecutableFolder() (string, error) {
 | 
						|
	p, err := Executable()
 | 
						|
	if err != nil {
 | 
						|
		return "", err
 | 
						|
	}
 | 
						|
	folder, _ := filepath.Split(p)
 | 
						|
	return folder, nil
 | 
						|
}
 | 
						|
 | 
						|
// Depricated. Same as Executable().
 | 
						|
func GetExePath() (exePath string, err error) {
 | 
						|
	return Executable()
 | 
						|
}
 |