| | |
| | | //LOG出力【文件夹】
|
| | | this.CreateDirectory(DirNameResourse.LogDirectory);
|
| | |
|
| | | //模板缓存存放的【文件夹】
|
| | | this.CreateDirectory(DirNameResourse.LocalTemplateDirectory);
|
| | | this.CreateDirectory(DirNameResourse.AllResidenceTemplateDirectory);
|
| | |
|
| | | //用户图片目录路径【文件夹】
|
| | | if (UserCenterResourse.AccountOption.UserPictruePath != string.Empty)
|
| | | {
|
| | |
| | | var rootPath = Common.Config.Instance.FullPath;
|
| | | foreach (var file in listFile)
|
| | | {
|
| | | if (file.StartsWith("ModelData_") == true)
|
| | | {
|
| | | //复制模板数据文件到指定文件夹
|
| | | TemplateData.TemplateCommonLogic.Current.CopyTemplateFileToLocalDirectory2(System.IO.Path.Combine(fulldirectory, file));
|
| | | continue;
|
| | | }
|
| | | string oldFile = System.IO.Path.Combine(fulldirectory, file);
|
| | | string newFile = System.IO.Path.Combine(rootPath, file);
|
| | | //移动文件
|