如何在Windows 7中获取文件SID

时间:2019-03-10 15:02:35

标签: python-3.x file attributes sid

此代码从这里轻松修改 http://python.zirael.org/e-filesystem4.html 我认为这将获取当前的工作目录并打印文件属性。

import os

for path in os.listdir( "./"):
    stat = os.stat( path)
    # owner and group are given as ids, that is numbers
    print("%-20s owner=%-6d group=%-6d" % (path, stat.st_uid, stat.st_gid))

返回示例:

.android             owner=0      group=0     
.atom                owner=0      group=0     
.conda               owner=0      group=0

https://docs.python.org/3.7/library/os.html#os.chmod 该文档说“您只能将文件设置为只读标志” 我想念什么吗?它似乎返回全零。我想列出并能够使用python更改我PC上任何文件的所有安全设置。

0 个答案:

没有答案