如何正确复制二进制文件

时间:2019-01-24 13:58:48

标签: file unix go file-permissions

我使用以下代码以编程方式构建二进制文件 二进制文件已构建成功,但是现在我想通过代码将其复制到go/bin路径,并且能够做到,但是它将文件复制< strong>但不可执行。

可能出什么问题了? 源文件是可执行文件

bPath := filepath.FromSlash("./integration/testdata/" + fileName)
cmd := exec.Command("go", "build", "-o", bPath, ".")
cmd.Dir = filepath.FromSlash("../")
err := cmd.Run()
if err != nil {
    fmt.Println("binary creation failed: ", err)
}

fmt.Println(os.Getenv("GOPATH"))
dir, _ := os.Getwd()
srcPath := filepath.Join(dir, "testdata", , fileName)
targetPath := filepath.Join(os.Getenv("GOPATH"),"/bin/",fileName)
copy(srcPath, targetPath)

副本为:

func copy(src string, dst string) error {
    // Read all content of src to data
    data, err := ioutil.ReadFile(src)
    if err != nil {
        return err
    }
    // Write data to dst
    err = ioutil.WriteFile(dst, data, 0644)
    if err != nil {
        return err
    }

    return nil
}

1 个答案:

答案 0 :(得分:9)

问题在于您提供的权限位掩码:0644。它不包含可执行权限,这是每个组中的最低位。

因此,请改为使用0755,结果文件将可由所有人执行:

err = ioutil.WriteFile(dst, data, 0755)

查看Wikipedia Chmod中的位掩码含义。

相关的位掩码表:

#    Permission               rwx    Binary
-------------------------------------------
7    read, write and execute  rwx    111
6    read and write           rw-    110
5    read and execute         r-x    101
4    read only                r--    100
3    write and execute        -wx    011
2    write only               -w-    010
1    execute only             --x    001
0    none                     ---    000