从sharepoint库下载批量文件

时间:2013-01-23 12:12:18

标签: sharepoint sharepoint-2010

我想通过代码从sharepoint文档库下载文件,因为文档库中有数千个文件。

我正在考虑创建控制台应用程序,我将在sharepoint服务器上运行并下载文件。这种方法是否正确,或者还有其他一些有效的方法可以做到这一点。

任何有关代码的帮助都将受到高度赞赏。

2 个答案:

答案 0 :(得分:0)

像SigarDave说的那样,完全可以在不编写任何代码的情况下实现这一目标。但是如果你真的想为此编写解决方案,那就像:

static void Main(string[] args)
{
  // Change to the URL of your site
  using (var site = new SPSite("http://MySite")) 
  using (var web = site.OpenWeb())
  {
    var list = web.Lists["MyDocumentLibrary"]; // Get the library
    foreach (SPListItem item in list.Items)
    {
      if (item.File != null)
      {
        // Concat strings to get the absolute URL
        // to pass to an WebClient object.
        var fileUrl = string.Format("{0}/{1}", site.Url, item.File.Url);            
        var result = DownloadFile(fileUrl, "C:\\FilesFromMyLibrary\\", item.File.Name);
        Console.WriteLine(result ? "Downloaded \"{0}\"" : "Error on \"{0}\"", item.File.Name);
      }
    }
  }
  Console.ReadKey();
}

private static bool DownloadFile(string url, string dest, string fileName)
{
  var client = new WebClient();

  // Change the credentials to the user that has the necessary permissions on the 
  // library
  client.Credentials = new NetworkCredential("Username", "Password", "Domain"); 
  var bytes = client.DownloadData(url);

  try
  {
    using (var file = File.Create(dest + fileName))
    {
      file.Write(bytes, 0, bytes.Length); // Write file to disk
      return true;
    }
  }
  catch (Exception)
  {
    return false;
  }
}

答案 1 :(得分:0)

不使用任何脚本的另一种方法是使用IE打开文档库,然后在功能区中单击“在文件资源管理器中打开”,然后可以将文件拖放到桌面上!