0

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

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

任何有关代码的帮助将不胜感激。

4

2 回答 2

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;
  }
}
于 2013-01-23T14:37:19.823 回答
0

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

于 2016-10-25T13:41:49.350 回答