使用本地 Windows 应用程序更改服务器上的文件
我正在编写一个自动化程序来更新我们服务器上的 Excel 工作表(C# 中)的内容。我们的服务器有各种门户并具有不同的凭据。我如何将门户上的文件提取到本地计算机以对其进行一些更改。
I am writing an automation to update the contents on an excel sheet(in c#) present on our server. Our server has various portals and has different credentials. How could I fetch the file on my portal to my local computer to make some changes to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的计算机是否位于服务器的域中?如果是这样...
以有权访问并通过 UNC 路径操作它的用户身份运行,就像正常路径一样...例如,您将加载 @"\Servername\share\file.xls" 而不是 @"C:\path\文件.xls”。
Is your computer on a domain with the server? If so...
Run as a user who has access and manipulate it via UNC paths just like normal paths... for example you would load @"\Servername\share\file.xls" instead of @"C:\path\file.xls".