在Windows服务中通过网络访问共享文件夹

发布于 2024-11-07 11:38:57 字数 248 浏览 0 评论 0原文

我有一个 Windows 服务,需要从网络(共享文件夹)访问文件(有时也需要修改)。我从 XML 中获取文件名,例如,

<add key ="FolderName" value="\\192.168.0.1\Source" />

我创建了一个日志文件,该文件始终显示未找到路径。

我还需要知道如何使用 Visual Studio 调试 Windows 服务?

提前致谢。

I have a windows service that needs to access the files (sometime modification also) from a network (shared folder). I get the file name from an XML like,

<add key ="FolderName" value="\\192.168.0.1\Source" />

I made a log file which always shows that the path is not found.

Also i need to know how to debug a windows service using visual studio?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鸠书 2024-11-14 11:38:57

问题很可能出在共享文件夹的权限上。您的服务在某个用户帐户下运行,并且该帐户需要授予该文件夹的访问权限。如果它是“本地服务”帐户,您将无法访问它。只需检查您运行该服务的帐户以及它是否有权访问该文件夹即可。

更新:请参阅这篇 MSDN 文章了解具体方法调试 Windows 服务应用程序。

Most likely, the problem is in permissions to the shared folder. Your service runs under some user account and this account needs to have access granted to that folder. In case it's the 'Local Service' account you won't be able to access it. Just check under what account you run the service and whether it has access to that folder.

UPDATE: See this MSDN article for how to debug windows service applications.

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