我正在尝试创建一个 SSIS 包,该包从远程 SQL DB 获取文件夹树结构,并在 Sharepoint 的文档库中重新创建该结构。
我试图(硬)编写一个脚本任务来创建一个文件夹,但我收到了这个错误:http: //img856.imageshack.us/img856/1386/helpel.png
仅运行此脚本的一部分后:
Microsoft.Sharepoint.Client.dll
Microsoft.Sharepoint.Client.Runtime.dll
public void Main()
{
ClientContext clientContext = new ClientContext("http://spdemo.example.com/");
clientContext.Credentials = new System.Net.NetworkCredential("admin", "password", "SPDEMO");
Web rootWeb = clientContext.Web;
Dts.TaskResult = (int)ScriptResults.Success;
}
我已经在互联网上搜索了解决方案,但没有找到适合我的东西。
所以基本上我需要找出如何:
- 创建文件夹
- 用子文件夹填充它
- 将比特流中的文件从 SQL 复制到 Sharepoint,全部在 SSIS 中
提前致谢!问候, 弗拉德·阿德林