我在 python 3.3 中使用这个代码和 pywin32 库来共享一个文件夹。我现在如何向文件夹添加权限?以下代码不对共享文件夹设置任何权限。我想将特定用户添加为读/写
import win32net
import win32netcon
shinfo={}
shinfo['netname']='python test'
shinfo['type']=win32netcon.STYPE_DISKTREE
shinfo['remark']='data files'
shinfo['permissions']=0
shinfo['max_uses']=-1
shinfo['current_uses']=0
shinfo['path']='C:\\sharedfolder'
shinfo['passwd']=''
server='192.168.1.100'
win32net.NetShareAdd(server,2,shinfo)