0

我一直在 SharePoint 中处理 PoC,在EventReceiver处理文档库中添加或更新的项目时,必须将文件复制到临时文件夹中。

我想知道,有没有办法知道哪个用户将在文件夹中写入文件?因为这可能在不同的服务器上工作,所以必须授予权限。

4

1 回答 1

1

对所有磁盘操作使用SPSecurity.RunWithElevatedPrivileges,因为传入用户不太可能有权限将任何内容写入服务器的文件系统。

SPSecurity.RunWithElevatedPrivileges(delegate()
{
    // open/write/close file here. 
    // Avoid touching SPxxxx objects from outside of this delegate
});
于 2013-08-02T19:22:09.093 回答