Esempio n. 1
0
 public bool ProcessHtmlList(string vsFileInput, string vsOutput)
 {
     try
     {
         CFile oFile = new CFile(vsFileInput);
         oSaveFile.FileName = vsOutput;
         List <string> epubList = oFile.ReadList();
         foreach (var spath in epubList)
         {
             ProcessHtml(spath);
         }
         return(true);
     }
     catch (Exception ex)
     {
         oSaveFile.WriteLog(vsFileInput, "error.log");
         oSaveFile.WriteLog(ex.Message, "error.log");
         return(false);
     }
 }