0

我对sharepoint知之甚少。需要开始,如何访问共享点站点并下载特定文件夹中可用的最新文件。

我正在使用 ASP.Net/C#.Net 和 Visual Studio 2008 下载文件。

什么是要求意味着任何特定的库/更新/路径?

我怎样才能知道网络服务的路径?(我只知道直接网址)

是否可以访问文件的元数据。

任何帮助将不胜感激。谢谢

4

1 回答 1

1

我在某个时候在网络搜索中找到了这个。这就是我最终使用的。

var remotefile = @"https://pathtoremotefile";
var localfile = @"C:\pathtolocalfile";
using(WebClient wc = new WebClient())
{
    wc.Credentials = CredentialCache.DefaultNetworkCredentials;
    // or new System.Net.NetworkCredential("user","pass","domain");
    wc.DownloadFile(remotefile,localfile);
}
于 2013-10-01T14:17:17.540 回答