GO语言"os/exec"包中"LookPath"函数的用法及代码示例。
用法:
func LookPath(file string)(string, error)
LookPath 在 PATH 环境变量命名的目录中搜索可执行文件。如果文件包含斜杠,则直接尝试,不参考 PATH。结果可能是绝对路径或相对于当前目录的路径。
例子:
package main
import (
"fmt"
"log"
"os/exec"
)
func main() {
path, err := exec.LookPath("fortune")
if err != nil {
log.Fatal("installing fortune is in your future")
}
fmt.Printf("fortune is available at %s\n", path)
}
相关用法
- GO LookupEnv用法及代码示例
- GO Logger.Output用法及代码示例
- GO Log10用法及代码示例
- GO Log用法及代码示例
- GO Logger用法及代码示例
- GO LoadLocation用法及代码示例
- GO LoadX509KeyPair用法及代码示例
- GO Location用法及代码示例
- GO Log2用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO LastIndex用法及代码示例
- GO LeadingZeros8用法及代码示例
- GO LeadingZeros16用法及代码示例
- GO ListenAndServe用法及代码示例
- GO Listener用法及代码示例
- GO LastIndexAny用法及代码示例
- GO Len8用法及代码示例
- GO ListenAndServeTLS用法及代码示例
- GO LastIndexFunc用法及代码示例
- GO Len64用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 LookPath。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。