FileHelper.cs 26.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
using NCC.Common.Configuration;
using NCC.Common.Extension;
using NCC.Common.FileManage;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Web;

namespace NCC.Common.Helper
{
    /// <summary>
    /// FileHelper
    /// 版 本:V1.20.15.0
    /// 版 权:Wesley(https://www.NCCsoft.com)
    /// 作 者:NCC开发平台组
    /// </summary>
    public class FileHelper
    {
        #region 返回绝对路径

        /// <summary>
        /// 返回绝对路径
        /// </summary>
        /// <param name="filePath">相对路径</param>
        /// <returns></returns>
        public static string GetAbsolutePath(string filePath)
        {
            return Directory.GetCurrentDirectory() + filePath;
        }

        #endregion

        #region 检测指定目录是否存在

        /// <summary>
        /// 检测指定目录是否存在
        /// </summary>
        /// <param name="directoryPath">目录的绝对路径</param>
        /// <returns></returns>
        public static bool IsExistDirectory(string directoryPath)
        {
            return Directory.Exists(directoryPath);
        }

        #endregion

        #region 检测指定文件是否存在,如果存在返回true

        /// <summary>
        /// 检测指定文件是否存在,如果存在则返回true。
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>        
        public static bool IsExistFile(string filePath)
        {
            return File.Exists(filePath);
        }

        /// <summary>
        /// 检测指定文件是否存在,如果存在则返回true。
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>        
        public static bool Exists(string filePath)
        {
            return File.Exists(filePath);
        }

        #endregion

        #region 获取指定目录中的文件列表

        /// <summary>
        /// 获取指定目录中所有文件列表
        /// </summary>
        /// <param name="directoryPath">指定目录的绝对路径</param>        
        public static string[] GetFileNames(string directoryPath)
        {
            //如果目录不存在,则抛出异常
            if (!IsExistDirectory(directoryPath))
            {
                throw new FileNotFoundException();
            }
            return Directory.GetFiles(directoryPath);
        }

        /// <summary>  
        /// 获取指定目录中所有文件列表  
        /// </summary>  
        /// <param name="directoryPath">指定目录的绝对路径</param>  
        /// <param name="data">返回文件</param>  
        /// <returns></returns>  
        public static List<FileInfo> GetAllFiles(string directoryPath, List<FileInfo> data = null)
        {
            if (!IsExistDirectory(directoryPath))
            {
                return new List<FileInfo>();
            }
            var listFiles = data == null ? new List<FileInfo>() : data;
            var directory = new DirectoryInfo(directoryPath);
            var directorys = directory.GetDirectories();
            var fileInfos = directory.GetFiles();
            if (fileInfos.Length > 0)
                listFiles.AddRange(fileInfos);
            foreach (var itemDirectory in directorys)
            {
                GetAllFiles(itemDirectory.FullName, listFiles);
            }
            return listFiles;
        }

        #endregion

        #region 获取指定目录中所有子目录列表,若要搜索嵌套的子目录列表,请使用重载方法.

        /// <summary>
        /// 获取指定目录中所有子目录列表,若要搜索嵌套的子目录列表,请使用重载方法.
        /// </summary>
        /// <param name="directoryPath">指定目录的绝对路径</param>        
        public static string[] GetDirectories(string directoryPath)
        {
            try
            {
                return Directory.GetDirectories(directoryPath);
            }
            catch (IOException)
            {
                throw;
            }
        }

        #endregion

        #region 获取指定目录及子目录中所有文件列表

        /// <summary>
        /// 获取指定目录及子目录中所有文件列表
        /// </summary>
        /// <param name="directoryPath">指定目录的绝对路径</param>
        /// <param name="searchPattern">模式字符串,"*"代表0或N个字符,"?"代表1个字符。
        /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。</param>
        /// <param name="isSearchChild">是否搜索子目录</param>
        public static string[] GetFileNames(string directoryPath, string searchPattern, bool isSearchChild)
        {
            //如果目录不存在,则抛出异常
            if (!IsExistDirectory(directoryPath))
            {
                throw new FileNotFoundException();
            }
            try
            {
                if (isSearchChild)
                {
                    return Directory.GetFiles(directoryPath, searchPattern, SearchOption.AllDirectories);
                }
                else
                {
                    return Directory.GetFiles(directoryPath, searchPattern, SearchOption.TopDirectoryOnly);
                }
            }
            catch (IOException)
            {
                throw;
            }
        }

        #endregion

        #region 创建目录

        /// <summary>
        /// 创建目录
        /// </summary>
        /// <param name="dir">要创建的目录路径包括目录名</param>
        public static void CreateDir(string dir)
        {
            if (dir.Length == 0) return;
            if (!Directory.Exists(dir))
                Directory.CreateDirectory(dir);
        }

        #endregion

        #region 删除目录

        /// <summary>
        /// 删除指定目录及其所有子目录
        /// </summary>
        /// <param name="dir">要删除的目录路径和名称</param>
        public static void DeleteDirectory(string dir)
        {
            if (dir.Length == 0) return;
            if (Directory.Exists(dir))
                Directory.Delete(dir, true);
        }

        #endregion

        #region 删除文件

        /// <summary>
        /// 删除文件
        /// </summary>
        /// <param name="file">要删除的文件路径和名称</param>
        public static void DeleteFile(string file)
        {
            if (File.Exists(file))
            {
                File.Delete(file);
            }
        }

        /// <summary>
        /// 删除文件
        /// </summary>
        /// <param name="file">要删除的文件路径和名称</param>
        public static void Delete(string file)
        {
            if (File.Exists(file))
            {
                File.Delete(file);
            }
        }

        #endregion

        #region 创建文件

        /// <summary>
        /// 创建文件
        /// </summary>
        /// <param name="dir">带后缀的文件名</param>
        /// <param name="content">文件内容</param>
        public static void CreateFile(string dir, string content)
        {
            dir = dir.Replace("/", "\\");
            if (dir.IndexOf("\\") > -1)
                CreateDir(dir.Substring(0, dir.LastIndexOf("\\")));
            StreamWriter sw = new StreamWriter(dir, false);
            sw.Write(content);
            sw.Close();
            sw.Dispose();
        }

        /// <summary>
        /// 创建文件。
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>
        public static void CreateFile(string filePath)
        {
            if (!IsExistFile(filePath))
            {
                FileInfo file = new FileInfo(filePath);
                FileStream fs = file.Create();
                fs.Close();
            }
        }

        /// <summary>
        /// 创建文件,并将字节流写入文件。
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>
        /// <param name="buffer">二进制流数据</param>
        public static void CreateFile(string filePath, byte[] buffer)
        {
            if (!IsExistFile(filePath))
            {
                FileInfo file = new FileInfo(filePath);
                FileStream fs = file.Create();
                fs.Write(buffer, 0, buffer.Length);
                fs.Close();
            }
        }
        #endregion

        #region 移动文件

        /// <summary>
        /// 移动文件(剪贴--粘贴)
        /// </summary>
        /// <param name="dir1">要移动的文件的路径及全名(包括后缀)</param>
        /// <param name="dir2">文件移动到新的位置,并指定新的文件名</param>
        public static void MoveFile(string dir1, string dir2)
        {
            if (File.Exists(dir1))
            {
                File.Move(dir1, dir2);
            }
        }

        #endregion

        #region 复制文件

        /// <summary>
        /// 复制文件
        /// </summary>
        /// <param name="dir1">要复制的文件的路径已经全名(包括后缀)</param>
        /// <param name="dir2">目标位置,并指定新的文件名</param>
        public static void CopyFile(string dir1, string dir2)
        {
            if (File.Exists(dir1))
            {
                File.Copy(dir1, dir2);
            }
        }

        #endregion

        #region 复制文件夹

        /// <summary>
        /// 复制文件夹(递归)
        /// </summary>
        /// <param name="varFromDirectory">源文件夹路径</param>
        /// <param name="varToDirectory">目标文件夹路径</param>
        public static void CopyFolder(string varFromDirectory, string varToDirectory)
        {
            Directory.CreateDirectory(varToDirectory);

            if (!Directory.Exists(varFromDirectory)) return;

            string[] directories = Directory.GetDirectories(varFromDirectory);

            if (directories.Length > 0)
            {
                foreach (string d in directories)
                {
                    CopyFolder(d, varToDirectory + d.Substring(d.LastIndexOf("\\")));
                }
            }
            string[] files = Directory.GetFiles(varFromDirectory);
            if (files.Length > 0)
            {
                foreach (string s in files)
                {
                    File.Copy(s, varToDirectory + s.Substring(s.LastIndexOf("\\")), true);
                }
            }
        }

        #endregion

        #region 删除指定文件夹对应其他文件夹里的文件

        /// <summary>
        /// 删除指定文件夹对应其他文件夹里的文件
        /// </summary>
        /// <param name="varFromDirectory">指定文件夹路径</param>
        /// <param name="varToDirectory">对应其他文件夹路径</param>
        public static void DeleteFolderFiles(string varFromDirectory, string varToDirectory)
        {
            Directory.CreateDirectory(varToDirectory);
            if (!Directory.Exists(varFromDirectory)) return;
            string[] directories = Directory.GetDirectories(varFromDirectory);
            if (directories.Length > 0)
            {
                foreach (string d in directories)
                {
                    DeleteFolderFiles(d, varToDirectory + d.Substring(d.LastIndexOf("\\")));
                }
            }
            string[] files = Directory.GetFiles(varFromDirectory);
            if (files.Length > 0)
            {
                foreach (string s in files)
                {
                    File.Delete(varToDirectory + s.Substring(s.LastIndexOf("\\")));
                }
            }
        }

        #endregion

        #region 从文件的绝对路径中获取文件名( 包含扩展名 )

        /// <summary>
        /// 从文件的绝对路径中获取文件名( 包含扩展名 )
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>        
        public static string GetFileName(string filePath)
        {
            //获取文件的名称
            FileInfo fi = new FileInfo(filePath);
            return fi.Name;
        }

        #endregion

        #region 获取一个文件的长度

        /// <summary>
        /// 获取一个文件的长度,单位为Byte
        /// </summary>
        /// <param name="filePath">文件的绝对路径</param>        
        public static long GetFileSize(string filePath)
        {
            FileInfo fi = new FileInfo(filePath);
            return fi.Length;
        }

        #endregion

        #region 获取文件大小并以BKBGBTB

        /// <summary>
        /// 计算文件大小函数(保留两位小数),Size为字节大小
        /// </summary>
        /// <param name="size">初始文件大小</param>
        /// <returns></returns>
        public static string ToFileSize(long size)
        {
            string m_strSize = "";
            long FactSize = 0;
            FactSize = size;
            if (FactSize < 1024.00)
                m_strSize = FactSize.ToString("F2") + " 字节";
            else if (FactSize >= 1024.00 && FactSize < 1048576)
                m_strSize = (FactSize / 1024.00).ToString("F2") + " KB";
            else if (FactSize >= 1048576 && FactSize < 1073741824)
                m_strSize = (FactSize / 1024.00 / 1024.00).ToString("F2") + " MB";
            else if (FactSize >= 1073741824)
                m_strSize = (FactSize / 1024.00 / 1024.00 / 1024.00).ToString("F2") + " GB";
            return m_strSize;
        }

        #endregion

        #region 将现有文件的内容复制到新文件中

        /// <summary>
        /// 将源文件的内容复制到目标文件中
        /// </summary>
        /// <param name="sourceFilePath">源文件的绝对路径</param>
        /// <param name="destFilePath">目标文件的绝对路径</param>
        public static void Copy(string sourceFilePath, string destFilePath)
        {
            File.Copy(sourceFilePath, destFilePath, true);
        }

        #endregion        

        #region ReadAllBytes

        /// <summary>
        /// ReadAllBytes
        /// </summary>
        /// <param name="path">path</param>
        /// <returns></returns>
        public static byte[] ReadAllBytes(string path)
        {
            try
            {
                return File.ReadAllBytes(path);
            }
            catch (Exception)
            {
                return null;
            }
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="path"></param>
        /// <returns></returns>
        public static string ReadAllStr(string path)
        {
            var line = "";
            FileStream fileStream = new FileStream(path, FileMode.Open);
            using (StreamReader reader = new StreamReader(fileStream))
            {
                line = reader.ReadLine();
            }
            return line;
        }

        #endregion

        #region 生成高清晰缩略图   

        /// <summary>   
        /// 根据源图片生成高清晰缩略图   
        /// </summary>   
        /// <param name="imgPath_old">源图(大图)物理路径</param>   
        /// <param name="imgPath_new">缩略图物理路径(生成的缩略图将保存到该物理位置)</param>   
        /// <param name="width">缩略图宽度</param>   
        /// <param name="height">缩略图高度</param>   
        /// <param name="mode">缩略图缩放模式(取值"HW":指定高宽缩放,可能变形;取值"W":按指定宽度,高度按比例缩放;取值"H":按指定高度,宽度按比例缩放;取值"Cut":按指定高度和宽度裁剪,不变形);取值"DB":等比缩放,以值较大的作为标准进行等比缩放</param>   
        /// <param name="type">即将生成缩略图的文件的扩展名(仅限:JPG、GIF、PNG、BMP)</param>   
        public static void MakeThumbnail(string imgPath_old, string imgPath_new, int width, int height, string mode, string imageType, int xx, int yy)
        {
            if (IsExistFile(imgPath_old))
            {
                Image img = Image.FromFile(imgPath_old);
                int towidth = width; int toheight = height;
                int x = 0; int y = 0; int ow = img.Width;
                int oh = img.Height; switch (mode)
                {
                    case "HW":  //指定高宽压缩 
                        if ((double)img.Width / (double)img.Height > (double)width / (double)height)//判断图形是什么形状 
                        {
                            towidth = width;
                            toheight = img.Height * width / img.Width;
                        }
                        else if ((double)img.Width / (double)img.Height == (double)width / (double)height)
                        {
                            towidth = width;
                            toheight = height;
                        }
                        else
                        {
                            toheight = height;
                            towidth = img.Width * height / img.Height;
                        }
                        break;
                    case "W":  //指定宽,高按比例    
                        toheight = img.Height * width / img.Width;
                        break;
                    case "H":  //指定高,宽按比例   
                        towidth = img.Width * height / img.Height;
                        break;
                    case "Cut":   //指定高宽裁减(不变形)    
                        if ((double)img.Width / (double)img.Height > (double)towidth / (double)toheight)
                        {
                            oh = img.Height;
                            ow = img.Height * towidth / toheight;
                            y = yy; x = (img.Width - ow) / 2;
                        }
                        else
                        {
                            ow = img.Width;
                            oh = img.Width * height / towidth;
                            x = xx; y = (img.Height - oh) / 2;
                        }
                        break;
                    case "DB":    // 按值较大的进行等比缩放(不变形)    
                        if ((double)img.Width / (double)towidth < (double)img.Height / (double)toheight)
                        {
                            toheight = height;
                            towidth = img.Width * height / img.Height;
                        }
                        else
                        {
                            towidth = width;
                            toheight = img.Height * width / img.Width;
                        }
                        break;
                    default:
                        break;
                }
                //新建一个bmp图片   
                Image bitmap = new Bitmap(towidth, toheight);
                //新建一个画板   
                Graphics g = Graphics.FromImage(bitmap);
                //设置高质量插值法   
                g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
                //设置高质量,低速度呈现平滑程度   
                g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
                //清空画布并以透明背景色填充   
                g.Clear(Color.Transparent);
                //在指定位置并且按指定大小绘制原图片的指定部分   
                g.DrawImage(img, new Rectangle(0, 0, towidth, toheight),
                new Rectangle(x, y, ow, oh),
                GraphicsUnit.Pixel); try
                {
                    //以jpg格式保存缩略图  
                    switch (imageType.ToLower())
                    {
                        case "gif":
                            bitmap.Save(imgPath_new, ImageFormat.Gif);//生成缩略图 
                            break;
                        case "jpg":
                            bitmap.Save(imgPath_new, ImageFormat.Jpeg);
                            break;
                        case "bmp":
                            bitmap.Save(imgPath_new, ImageFormat.Bmp);
                            break;
                        case "png":
                            bitmap.Save(imgPath_new, ImageFormat.Png);
                            break;
                        default:
                            bitmap.Save(imgPath_new, ImageFormat.Jpeg);
                            break;
                    }
                    bitmap.Save(imgPath_new);
                }
                catch (Exception)
                {
                    throw;
                }
                finally
                {
                    img.Dispose();
                    bitmap.Dispose();
                    g.Dispose();
                }
            }
        }
        #endregion

        #region 获取文件类型

        public static string GetFileType(FileInfo file)
        {
            if (file.Exists)
            {
                string fileName = file.Name;
                string fileType = fileName.Substring(fileName.LastIndexOf(".") + 1);
                return fileType;
            }
            return "";
        }

        #endregion

        #region  将文件路径转为内存流

        //将文件路径转为内存流
        public static MemoryStream FileToStream(string fileName)
        {
            // 打开文件
            FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);

            // 读取文件的 byte[]
            byte[] bytes = new byte[fileStream.Length];

            fileStream.Read(bytes, 0, bytes.Length);

            fileStream.Close();

            // 把 byte[] 转换成 Stream
            MemoryStream stream = new MemoryStream(bytes);
            return stream;
        }

        #endregion

        #region 根据文件大小获取指定前缀的可用文件名

        /// <summary>
        /// 根据文件大小获取指定前缀的可用文件名
        /// </summary>
        /// <param name="folderPath">文件夹</param>
        /// <param name="prefix">文件前缀</param>
        /// <param name="size">文件大小(1m)</param>
        /// <param name="ext">文件后缀(.log)</param>
        /// <returns>可用文件名</returns>
        public static string GetAvailableFileWithPrefixOrderSize(string folderPath, string prefix, int size = 1 * 1024 * 1024, string ext = ".log")
        {
            var allFiles = new DirectoryInfo(folderPath);
            var selectFiles = allFiles.GetFiles().Where(fi => fi.Name.ToLower().Contains(prefix.ToLower()) && fi.Extension.ToLower() == ext.ToLower() && fi.Length < size).OrderByDescending(d => d.Name).ToList();

            if (selectFiles.Count > 0)
            {
                return selectFiles.FirstOrDefault().FullName;
            }

            return Path.Combine(folderPath, $@"{prefix}_{DateTime.Now.ConvertToTimeStamp()}.log");
        }

        #endregion

        #region 文件下载
        /// <summary>
        /// 普通下载
        /// </summary>
        /// <param name="filePath">路径</param>
        /// <param name="fileName">文件名</param>
        public static void DownloadFile(string filePath, string fileName)
        {
            try
            {
                if (File.Exists(filePath))
                {
                    var buff = ReadAllBytes(filePath);
                    var httpContext = App.HttpContext;
                    httpContext.Response.ContentType = "application/octet-stream";
                    httpContext.Response.Headers.Add("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
                    httpContext.Response.Body.WriteAsync(buff);
                    httpContext.Response.Body.Flush();
                    httpContext.Response.Body.Close();
                }
            }
            catch (Exception ex)
            {

            }
        }
        /// <summary>
        /// 普通下载
        /// </summary>
        /// <param name="buffer">文件流</param>
        /// <param name="fileName">文件名</param>
        public static void DownloadFile(byte[] buffer, string fileName)
        {
            var httpContext = App.HttpContext;
            httpContext.Response.ContentType = "application/octet-stream";
            httpContext.Response.Headers.Add("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
            httpContext.Response.Body.Write(buffer);
            httpContext.Response.Body.Flush();
            httpContext.Response.Body.Close();
        }

        #endregion

        #region 附件处理
        /// <summary>
        /// 添加附件:将临时文件夹的文件拷贝到正式文件夹里面
        /// </summary>
        /// <param name="data"></param>
        public static void CreateFile(List<FileModel> data)
        {
            if (data != null && data.Count > 0)
            {
                var temporaryFilePath = KeyVariable.SystemPath+ "TemporaryFile/";
                var systemFilePath = KeyVariable.SystemPath;
                foreach (FileModel item in data)
                {
                    MoveFile(temporaryFilePath + item.FileId, systemFilePath + item.FileId);
                }
            }
        }
        /// <summary>
        /// 更新附件
        /// </summary>
        /// <param name="data"></param>
        public static void UpdateFile(List<FileModel> data)
        {
            if (data != null)
            {
                var temporaryFilePath = KeyVariable.SystemPath + "TemporaryFile/";
                var systemFilePath = KeyVariable.SystemPath;
                foreach (FileModel item in data)
                {
                    if (item.FileType == "add")
                    {
                        MoveFile(temporaryFilePath + item.FileId, systemFilePath + item.FileId);
                    }
                    else if (item.FileType == "delete")
                    {
                        DeleteFile(systemFilePath + item.FileId);
                    }
                }
            }
        }
        /// <summary>
        /// 删除附件
        /// </summary>
        /// <param name="data"></param>
        public static void DeleteFile(List<FileModel> data)
        {
            if (data != null && data.Count > 0)
            {
                var systemFilePath = KeyVariable.SystemPath;
                foreach (FileModel item in data)
                {
                    DeleteFile(systemFilePath + item.FileId);
                }
            }
        }
        #endregion
    }
}