.NET ACL 实时审核
我想使用 .NET 跟踪 ACL 的实时更改,而不使用 EventLog 变体。
有谁知道这是否可能以及如何实现?我已经搜索了大约一周,但没有任何有用的结果。
谢谢,
施密茨
I want to track live changes to ACLs using .NET without using the EventLog variation.
Does anyone know if this is possible and howso? I've been searching for about a week without any helpful results.
Thanks,
JSchmitz
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该只需要一个 FileSystemWatcher,其中
NotifyFilter
属性设置为安全。然后,您可以调用 GetAccessControl 获取已更改文件的当前 ACL/文件夹。
You should just need a FileSystemWatcher, with the
NotifyFilter
property set to Security.You can then call GetAccessControl to get the current ACL for the changed file/folder.