如何使用 Python/.NET 在 Windows 上的 Samba 共享中设置文件/目录所有权/权限?
我需要通过 Python 脚本在 Windows 上的 Samba 共享中创建目录和文件。我也可以(并且确实)使用 Python 中的 .NET 3.5。我想创建具有特定所有者和权限的这些目录和文件。我能以某种方式实现这一点吗?
I need to create directories and files in a Samba share on Windows, from a Python script. I can (and do) also use .NET 3.5 from Python. I would like to create these directories and files with certain owners and permissions. Can I achieve this somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CACLS.exe 显示或修改文件和文件夹的访问控制列表 (ACL)。您可以通过 Python 调用此函数,如下所示:
result = os.popen("cacls " + '"' + theDirPath + '"')
有一个很好的 Python 脚本示例,用于设置权限此处
You can use CACLS.exe to display or modify Access Control Lists (ACLs) for files and folders. You can call this from Python with something like:
result = os.popen("cacls " + '"' + theDirPath + '"')
There is a good example of a Python script which sets up permissions here