}                                                   //表紙画像のパス

        //テンプレートファイルをチェックする
        static public void CheckEpubTemplate()
        {
            var templateDir = GetTemplateDirectory();

            if (Directory.Exists(templateDir) != true)
            {
                throw new Exception("テンプレートディレクトリがありません");
            }
            //EPUBに最低限必要なファイルがあるか確認する 異常時は例外が投げられる
            Archiver.CheckEpubDir(templateDir);
        }