Quando si tenta di leggere il file .doc utilizzando DocumentFormat.OpenXml dll il suo errore di assegnazione come "File contiene dati danneggiati".Lettura del file .doc tramite DocumentFormat.OpenXml dll
Questa DLL sta leggendo correttamente il file .docx.
Può DocumentFormat.OpenXml dll aiutare nella lettura del file .doc?
string path = @"D:\Data\Test.doc";
string searchKeyWord = @"java";
private bool SearchWordIsMatched(string path, string searchKeyWord)
{
try
{
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(path, true))
{
var text = wordDoc.MainDocumentPart.Document.InnerText;
if (text.Contains(searchKeyWord))
return true;
else
return false;
}
}
catch (Exception ex)
{
throw ex;
}
}
Grazie per la risposta. –
Sì, sto aspettando altre risposte. –
Un anno passato. Sto ancora aspettando :/ –