无法在共享点中以编程方式访问共享文件夹
我正在尝试在 sharepoint 2007 中以文档库方式显示共享文件夹内容。我可以从本地目录 c:\Test
获取文件,但不能从共享文件夹获取文件。
我正在使用下面的代码来检查:
if (Directory.Exists(@"\\servername\foldername\"))
如果我在同一个共享点服务器上的.net应用程序中尝试相同的代码,它会检测到共享文件夹,但共享点代码没有运气
它说文件夹不存在,我们正在使用IIS匿名CA Siteminder 身份验证
任何想法都将不胜感激!
I'm trying to display shared folder contents in doc library fashion in sharepoint 2007. I am able to get files from local dir c:\Test
but not from shared folder.
I am using below code to check:
if (Directory.Exists(@"\\servername\foldername\"))
If I try same code in .net application on same sharepoint server it is detecting the shared folder but no luck with sharepoint code
it says folder doesn't exist and we are using IIS anonymous with CA Siteminder authentication
any ideas are greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您的 sharepoint 站点的 IIS 应用程序池配置了
域帐户
;并确保该帐户对共享文件夹有足够的权限。如果您的应用程序池使用本地帐户,则需要使用
LogonUser (advapi32.dll)
进行模拟。Make sure the IIS application pool of your sharepoint site is configured with a
domain account
; and make sure this account have sufficient rights on the shared folder.If your app pool is using a local account, you will need to impersonate using
LogonUser (advapi32.dll)
.尝试使用页面查看器 Web 部件。遵循该过程很容易。
try with Page Viewer Web Part. It's easy to follow the process.