繁体   English   中英

如何删除Windows上的文件权限?

[英]How to remove file permissions on windows?

我已使用以下答案授予对文件的访问权限。 感谢@kindall https://stackoverflow.com/a/12168268/740899

> import win32security 
> import ntsecuritycon as con
> 
> FILENAME = "whatever"
> 
> userx, domain, type = win32security.LookupAccountName ("", "User X")
> 
> sd = win32security.GetFileSecurity(FILENAME, win32security.DACL_SECURITY_INFORMATION) 
> dacl = sd.GetSecurityDescriptorDacl()   # instead of dacl = win32security.ACL()
> 
> dacl.AddAccessAllowedAce(win32security.ACL_REVISION, con.FILE_GENERIC_READ | con.FILE_GENERIC_WRITE, userx)
> 
> sd.SetSecurityDescriptorDacl(1, dacl, 0)   # may not be necessary
> win32security.SetFileSecurity(FILENAME, win32security.DACL_SECURITY_INFORMATION, sd)

但是,访问需要是临时的。 所以我使用dacl.AddAccessDeniedAce代替dacl.AddAccessAllowedAce显示的dacl.AddAccessAllowedAce 但是,这有不良行为,因为我的用户将来需要再次临时访问。 运行AddAccessDeniedAce然后重新运行AddAccessAllowedAce ,被拒绝的控制仍然存在,我的用户仍然无法访问该文件。 当用户不再需要访问权限时,我想将他们完全从访问权限中删除。 这可以通过 Windows 资源管理器中的属性菜单完成:

在此处输入图片说明

我一直无法找到支持此类任务的文档。 有谁知道如何通过操作 dacl 来做到这一点? 还是我必须通过 Windows 界面手动执行此操作?

在这里找到了解决方案: http : //voices.canonical.com/tag/windows/

我不得不稍微调整一下,但它正在工作。 哇!

def remove_ace(path,usernames):
    """Remove the ace for the given users."""
    if not os.path.exists(path):
        raise WindowsError('Path %s could not be found.' % path)
    total = 0
    for x in usernames:
        userx, domain, utype = win32security.LookupAccountName("", x)
        sd = win32security.GetFileSecurity(path, win32security.DACL_SECURITY_INFORMATION)
        dacl = sd.GetSecurityDescriptorDacl()
        num_delete = 0
        for index in range(0, dacl.GetAceCount()):
            ace = dacl.GetAce(index - num_delete)
            if userx == ace[2]:
                dacl.DeleteAce(index - num_delete)
                num_delete += 1
                total += 1
        if num_delete > 0:
            sd.SetSecurityDescriptorDacl(1, dacl, 0)
            win32security.SetFileSecurity(path, win32security.DACL_SECURITY_INFORMATION, sd)
    if total > 0:
        return True

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM