无法在共享点中以编程方式访问共享文件夹

发布于 2024-10-14 13:20:08 字数 342 浏览 3 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

舞袖。长 2024-10-21 13:20:08

确保您的 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).

ヅ她的身影、若隐若现 2024-10-21 13:20:08

尝试使用页面查看器 Web 部件。遵循该过程很容易。

try with Page Viewer Web Part. It's easy to follow the process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文