got the issue resolved using the getFiles method
string[] filePaths = Directory.GetFiles(@"c:\Test\"); string[] documentsToMerge = filePaths; string outputFileName = String.Format(@"C:\Test\Merge\Combined.docx", Guid.NewGuid()); MsWord.Merge(documentsToMerge, outputFileName, true); thank you for the help.