Exemplo n.º 1
0
 /// <summary>
 /// 拷贝OEM文件到根目录
 /// </summary>
 /// <param name="v"></param>
 private static void CopyOEMToRoot(string dir)
 {
     try
     {
         IOUtils.CopyFolder(Cms.PyhicPath + "/" + CmsVariables.OEM_PATH + dir, Cms.PyhicPath);
     }
     catch (Exception ex)
     {
         Console.WriteLine("[ CMS][ OEM]: 拷贝OEM文件失败:" + ex.Message);
     }
 }