GO文件操作

Posted 一曲长歌一剑天涯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GO文件操作相关的知识,希望对你有一定的参考价值。

1. 获取当前文件路径

import (
    "errors"
    "runtime"
)
 
func CurrentFile() string {
    _, file, _, ok := runtime.Caller(1)
    if !ok {
        panic(errors.New("Can not get current file info"))
    }
    return file
}

2.获取可执行文件目录

path, err := os.Getwd()
if err != nil {
    panic(err)
    return
}

3. 获取当前文件所在目录

func CurrentFileDir() string {
    _, file, _, ok := runtime.Caller(1)
    if !ok {
        return "失败"
    }
    i := strings.LastIndex(file, "/") // linux环境
    if i < 0 {
        i = strings.LastIndex(file, "\\\\") // windows环境
    }

    return string(file[0 : i+1])
}

以上是关于GO文件操作的主要内容,如果未能解决你的问题,请参考以下文章

为每个片段添加一个操作栏

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

VSCode自定义代码片段——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程