Monthly Archives: June 2015

Upload data from multiple xml files to SharePoint

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml;using System.IO;using System.Data; namespace XML.Migration{    class Program    {        static void Main(string[] args)        {            //Provide the path of the lotus notes xml files            string directoryPath = @”C:\Path”;             //It cheque if the folder exisits            if (Directory.Exists(directoryPath))            … Continue reading

Posted in Uncategorized | Leave a comment