Example #1
0
 static void SingleProc(string path)
 {
     try
     {
         Log.log(path);
         Epub epub = new Epub(path);
         proc.ForEach((p) => p.Process(epub));
         epub.filename += "[AEP]";
         if (output == null)
         {
             output = Path.GetDirectoryName(path);
         }
         epub.Save(output);
     }
     catch (Exception e)
     {
         Log.log("[Error]" + e);
         // throw;
     }
 }
 public override void Process(Epub epub)
 {
 }