douhui9192 2015-04-27 11:50
浏览 659
已采纳

使用os.Mkdir()创建的文件夹具有不正确的权限

I am creating a folder in go using os.Mkdir(). While it does get created, it does not possess the permissions I expected it to.

Here is the code I used to create the directory:

package main

import (
    "fmt"
    "os"
)

func main() {
    err := os.Mkdir("/var/run/testdir", 0777)
    if err != nil {
        fmt.Println("could not create dir: %s", err.Error())
        err = nil
    }
}

As I have given "0777" as parameter, I am excpecting the created dir to have full permissions for everybody. It however has:

drwxr-xr-x  2 root       root         40 Apr 27 11:43 testdir/

What am I getting wrong here?

  • 写回答

1条回答 默认 最新

  • doutizhou5312 2015-04-27 12:07
    关注

    The actual permission that the created folder will get is the result of the permission you specify (0777) and the active umask of your process (the running Go program).

    This is most likely why the created folder lacks write permission for group and other access.

    You can read more about umask on Wikipedia.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?