python os.makedirs不分配组写权限

时间:2017-07-20 06:41:11

标签: python permissions file-permissions

以下是重现此问题的步骤列表:

chaudhary@recsys $ ipython3
Python 3.5.2 (default, Nov 17 2016, 17:05:23)
Type 'copyright', 'credits' or 'license' for more information
IPython 6.1.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: !pwd
/tmp/test

In [2]: !ls -ltr /tmp | grep test
drwxrwxr-x 2 chaudhary recsys     4096 Jul 20 12:01 test

In [3]: import os

In [4]: os.makedirs('foo/bar/baz', mode=0o775)

In [5]: !tree -pugh
.
└── [drwxr-xr-x chaudhary recsys   4.0K]  foo
    └── [drwxr-xr-x chaudhary recsys   4.0K]  bar
        └── [drwxr-xr-x chaudhary recsys   4.0K]  baz

3 directories, 0 files

理想情况下,所有这些文件夹都应具有组写权限drwxrwxr-x。我知道我可以像this question's answer中提到的那样解决这个问题。

我想知道我是否遗漏了一些可能是团体许可错误的原因。

更新:

上面显示的测试片段是在Linux(Ubuntu 16.04)上完成的。我也能在Mac上重现这一点。

chaudhary@MacBookProoo $ mkdir /tmp/test; chmod 775 /tmp/test; ls -l /tmp/ | grep test; cd /tmp/test; python3 -c 'import os; os.makedirs("foo/bar/baz", 0o775)'; ls -l /tmp/test; ls -l /tmp/test/foo; ls -l /tmp/test/foo/bar

drwxrwxr-x 2 chaudhary wheel      68 Jul 20 12:22 test
total 0
drwxr-xr-x 3 chaudhary wheel 102 Jul 20 12:22 foo
total 0
drwxr-xr-x 3 chaudhary wheel 102 Jul 20 12:22 bar
total 0
drwxr-xr-x 2 chaudhary wheel 68 Jul 20 12:22 baz

2 个答案:

答案 0 :(得分:1)

在文档中,它说在某些系统中模式参数被忽略或解释不清楚:

  

在某些系统上,忽略模式。使用它的地方,当前的umask   价值首先被掩盖。如果是最后9位以外的位(即   它们的设置是模式的八进制表示的最后3位数   意思是平台依赖的。在某些平台上,它们被忽略了   你应该明确地调用chmod()来设置它们。

它建议您使用chmod()代替

来源https://docs.python.org/3/library/os.html#os.mkdir

答案 1 :(得分:1)

Python尊重umask,有时完全忽略该模式:

  

在某些系统上,忽略模式。使用它的地方,当前的umask   价值首先被掩盖。如果是最后9位以外的位(即   它们的设置是模式的八进制表示的最后3位数   意思是平台依赖的。在某些平台上,它们被忽略了   你应该明确地调用chmod()来设置它们。

来自:https://docs.python.org/3/library/os.html

有关umask here

的更多信息

所以一种方法是设置umask不要干扰你想要的权限(对于你的运行过程 - 也一定要在之后重置它们):

demo@demo:~/demo$ mkdir demo0
demo@demo:~/demo$ cat test.py
import os

os.makedirs("demo1/demo2/demo3",0775)

demo@demo:~/demo$ python test.py
demo@demo:~/demo$ ls -lah
total 24K
drwxr-xr-x 4 demo demo 4.0K Jul 20 06:52 .
drwxr-xr-x 6 demo demo 4.0K Jul 20 06:52 ..
drwxr-xr-x 2 demo demo 4.0K Jul 20 06:52 demo0
drwxr-xr-x 3 demo demo 4.0K Jul 20 06:52 demo1
-rw-r--r-- 1 demo demo  118 Jul 20 06:52 test2.py
-rw-r--r-- 1 demo demo   50 Jul 20 06:46 test.py
demo@demo:~/demo$ cat test2.py
import os

try:
    oldumask = os.umask(0)
    os.makedirs("demo2/demo3/demo4",0775)
finally:
    os.umask(oldumask)

demo@demo:~/demo$ python test2.py
demo@demo:~/demo$ ls -lah
total 28K
drwxr-xr-x 5 demo demo 4.0K Jul 20 06:52 .
drwxr-xr-x 6 demo demo 4.0K Jul 20 06:52 ..
drwxr-xr-x 2 demo demo 4.0K Jul 20 06:52 demo0
drwxr-xr-x 3 demo demo 4.0K Jul 20 06:52 demo1
drwxrwxr-x 3 demo demo 4.0K Jul 20 06:52 demo2
-rw-r--r-- 1 demo demo  118 Jul 20 06:52 test2.py
-rw-r--r-- 1 demo demo   50 Jul 20 06:46 test.py
demo@demo:~/demo$ ls -lah demo2/
total 12K
drwxrwxr-x 3 demo demo 4.0K Jul 20 06:52 .
drwxr-xr-x 5 demo demo 4.0K Jul 20 06:52 ..
drwxrwxr-x 3 demo demo 4.0K Jul 20 06:52 demo3
demo@demo:~/demo$

当然,如果您一直需要这些权限,可以在os-level上设置umask。