从SharePoint Server下载最新文件

时间:2012-09-27 05:36:14

标签: c# asp.net sharepoint sharepoint-2007

我对sharepoint的想法很少。需要一个开始,如何访问共享点站点并下载特定文件夹中的最新文件。

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

什么是需求意味着任何特定的libraray / update / pathes?

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

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

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

1 个答案:

答案 0 :(得分: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);
}