Exemplo n.º 1
0
        public bool CreateTopic(String path)
        {
            if (!path.EndsWith("\\"))
            {
                path += "\\";
            }
            //创建视频
            string tpath = path + disOrder + "@" + name;

            Directory.CreateDirectory(tpath);
            if (videos.Count > 0)
            {
                string vp = tpath + "\\视频";

                Directory.CreateDirectory(vp);

                XmlWriter.CreateVideoXml(vp + "\\config.xml");
                for (int i = 0; i < videos.Count; i++)
                {
                    string     fname  = FileUtil.GetFileNameFromPath(videos[i].filePath);
                    CopyResult Result = CopyFile(videos[i].filePath, vp, fname);
                    if (2 == Result.result)
                    {
                        videos[i].filePath = vp + "\\" + Result.name;
                    }

                    fname  = FileUtil.GetFileNameFromPath(videos[i].firstImg);
                    Result = CopyFile(videos[i].firstImg, vp, fname);
                    if (2 == Result.result)
                    {
                        videos[i].firstImg = vp + "\\" + Result.name;
                    }

                    XmlWriter.AddVideoInfo(vp + "\\config.xml", videos[i], i);
                }
            }
            //创建多媒体
            if (medias.Count > 0)
            {
                string mp = tpath + "\\多媒体";
                Directory.CreateDirectory(mp);
                string tmpPath;
                for (int i = 0; i < medias.Count; i++)
                {
                    tmpPath = mp + "\\" + i + "@" + medias[i].name;
                    Directory.CreateDirectory(tmpPath);
                    string     fname  = FileUtil.GetFileNameFromPath(medias[i].audioFiltPath);
                    CopyResult Result = CopyFile(medias[i].audioFiltPath, tmpPath, fname);
                    if (2 == Result.result)
                    {
                        medias[i].audioFiltPath = tmpPath + "\\" + Result.name;
                    }

                    List <MediaPage> pages = medias[i].mediaPages;
                    if (null != pages)
                    {
                        XmlWriter.CreateMultiXml(tmpPath + "\\config.xml");
                        for (int j = 0; j < pages.Count; j++)
                        {
                            string     tname   = FileUtil.GetFileNameFromPath(pages[j].img1);
                            CopyResult ResPage = CopyFile(pages[j].img1, tmpPath, tname);
                            if (2 == ResPage.result)
                            {
                                pages[j].img1 = tmpPath + "\\" + ResPage.name;
                            }

                            tname   = FileUtil.GetFileNameFromPath(pages[j].img2);
                            ResPage = CopyFile(pages[j].img2, tmpPath, tname);
                            if (2 == ResPage.result)
                            {
                                pages[j].img2 = tmpPath + "\\" + ResPage.name;
                            }

                            tname   = FileUtil.GetFileNameFromPath(pages[j].textPath);
                            ResPage = CopyFile(pages[j].textPath, tmpPath, tname);
                            if (2 == ResPage.result)
                            {
                                pages[j].textPath = tmpPath + "\\" + ResPage.name;
                            }

                            XmlWriter.AddMultiInfo(tmpPath + "\\config.xml", pages[j], j);
                        }
                    }
                }
            }
            //创建知识问答
            if (null != awser)
            {
                string mp = tpath + "\\知识问答";
                Directory.CreateDirectory(mp);
                XmlWriter.CreateQAXml(mp + "\\config.xml");
                List <Awser> items = awser;
                if (null != items)
                {
                    for (int i = 0; i < items.Count; i++)
                    {
                        XmlWriter.AddQAInfo(mp + "\\config.xml", items[i], i);
                    }
                }
            }

            return(true);
        }