移动系统liao
2025-02-08 8c8404c55a863844cc674a8bedb2cfdb92c1c288
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
using Aliyun.OSS;
using Aliyun.OSS.Util;
using COSXML;
using COSXML.Auth;
using EzCoreNet.Utility;
using EzCoreNet.Utility.Extend;
using EzCoreNetFurion.IServices;
using EzCoreNetFurion.IServices.SysSet;
using EzCoreNetFurion.Model.Emun;
using Furion;
using Furion.DependencyInjection;
using Furion.FriendlyException;
using Microsoft.AspNetCore.Http;
using Qiniu.Storage;
using Qiniu.Util;
using SqlSugar;
using System.Globalization;
namespace EzUpFiles
{
    /// <summary>
    /// 附件服务程序
    /// </summary>
    public class EzFileUploadService : IEzFileUploadService, IScoped
    {
        private readonly ISYSSettingService _SYSSetting;
        private readonly HttpRequest? _request;
        private readonly ISqlSugarClient _sqlSugarClient;
        public EzFileUploadService(ISYSSettingService sYSSetting, IHttpContextAccessor httpContext, ISqlSugarClient sqlSugarClient)
        {
            _SYSSetting = sYSSetting;
            _request = httpContext.HttpContext?.Request ?? null;
            _sqlSugarClient = sqlSugarClient;
        }
 
        /// <summary>
        /// 上传附件
        /// </summary>
        /// <returns></returns>
        public async Task<string> UploadFiles()
        {
            var op = _SYSSetting.GetAttachmentSetting();
            if (op == null)
                throw Oops.Oh("你没有对附件保存进行设置,请设置附件保存");
            var maxSize = 1024 * 1024 * (op.AttachmentSaveFileSize?.toInt() ?? 0); //上传大小5M
 
            var file = _request?.Form?.Files["file"];
            if (file == null)
            {
                throw Oops.Oh("你没有选择文件");
            }
 
            var fileName = file.FileName;
            var fileExt = Path.GetExtension(fileName).ToLowerInvariant();
 
            //检查大小
            if (file.Length > maxSize)
            {
                throw Oops.Oh("文件大于设置文件");
            }
 
            //检查文件扩展名
            if (string.IsNullOrEmpty(fileExt) || Array.IndexOf(op.AttachmentSaveFileExtName?.Split(',') ?? new string[] { "" }, fileExt.Substring(1).ToLower()) == -1)
            {
                throw Oops.Oh("上传文件扩展名是不允许的扩展名,请上传后缀名为:" + op.AttachmentSaveFileExtName);
 
            }
 
            string url = string.Empty;
            switch (op.AttachmentSaveMode)
            {
                case AttachmentSaveMode.AliOSS:
                    url = await UpLoadFileForAliYunOSS(op, fileExt, file);
                    break;
                case AttachmentSaveMode.TencentCOS:
                    url = await UpLoadFileForQCloudOSS(op, fileExt, file);
                    break;
                case AttachmentSaveMode.QiNiuKodo:
                    url = await UpLoadFileForQiNiuKoDo(op, fileExt, file);
                    break;
                case AttachmentSaveMode.Logical:
                    url = await UpLoadFileForLocalStorage(op, fileExt, file);
                    break;
                case AttachmentSaveMode.DataBase:
                    throw Oops.Oh("不支持");
                    break;
                default:
                    break;
            }
 
 
            return url;
 
 
        }
 
        /// <summary>
        /// 上传base64
        /// </summary>
        /// <param name="base64"></param>
        /// <returns></returns>
        public async Task<string> UploadFilesFByBase64(string base64)
        {
            var op = _SYSSetting.GetAttachmentSetting();
            if (op == null)
                throw Oops.Oh("你没有对附件保存进行设置,请设置附件保存");
            if (string.IsNullOrEmpty(base64))
            {
                throw Oops.Oh("没有内容");
            }
 
            //检查上传大小
            if (!CommonHelper.CheckBase64Size(base64, op.AttachmentSaveFileSize?.toInt() ?? 5))
            {
                throw Oops.Oh("上传文件大小超过限制,最大允许上传" + op.AttachmentSaveFileSize + "M");
 
            }
 
            base64 = base64.Replace("data:image/png;base64,", "").Replace("data:image/jgp;base64,", "").Replace("data:image/jpg;base64,", "").Replace("data:image/jpeg;base64,", "");//将base64头部信息替换
            byte[] bytes = Convert.FromBase64String(base64);
            MemoryStream memStream = new MemoryStream(bytes);
 
            string url = string.Empty;
            switch (op.AttachmentSaveMode)
            {
                case AttachmentSaveMode.AliOSS:
                    url = await UpLoadBase64ForAliYunOSS(op, memStream);
                    break;
                case AttachmentSaveMode.TencentCOS:
                    url = await UpLoadBase64ForQCloudOSS(op, bytes);
                    break;
                case AttachmentSaveMode.QiNiuKodo:
                    url = await UpLoadBase64ForQiNiuKoDo(op, bytes);
                    break;
                case AttachmentSaveMode.Logical:
                    url = await UpLoadBase64ForLocalStorage(op, memStream);
                    break;
                case AttachmentSaveMode.DataBase:
                    throw Oops.Oh("不支持");
                    break;
                default:
                    break;
            }
 
 
            return url;
        }
 
        /// <summary>
        /// 删除文件
        /// </summary>
        /// <param name="Path"></param>
        /// <returns></returns>
        public async Task<bool> DelFile(string Path)
        {
            var op = _SYSSetting.GetAttachmentSetting();
            if (op == null)
                throw Oops.Oh("你没有对附件保存进行设置,请设置附件保存");
            bool ret = false;
            switch (op.AttachmentSaveMode)
            {
                case AttachmentSaveMode.AliOSS:
                    ret = await DelFileForAliYunOSS(op, Path);
                    break;
                case AttachmentSaveMode.TencentCOS:
                    ret = await DelFileForQCloudOSS(op, Path);
                    break;
                case AttachmentSaveMode.QiNiuKodo:
                    ret = await DelFileForQiNiuKoDo(op, Path);
                    break;
                case AttachmentSaveMode.Logical:
                    ret = await DelFileForLocalStorage(op, Path);
                    break;
                case AttachmentSaveMode.DataBase:
                    throw Oops.Oh("不支持");
 
                default:
                    break;
            }
 
 
            return ret;
        }
 
        #region 本地上传方法(File)
 
        /// <summary>
        /// 本地上传方法(File)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileExt"></param>
        /// <param name="file"></param>        
        /// <returns></returns>
        public async Task<string> UpLoadFileForLocalStorage(SYSDictionaryAttachmentSetting options, string fileExt, IFormFile file)
        {
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            var saveUrl = options.AttachmentSavePath + today + "/";
            var dirPath = App.WebHostEnvironment.WebRootPath + saveUrl;
            if (!Directory.Exists(dirPath)) Directory.CreateDirectory(dirPath);
            var filePath = dirPath + newFileName;
            var fileUrl = saveUrl + newFileName;
 
 
 
            await using (var fs = File.Create(filePath))
            {
                await file.CopyToAsync(fs);
                fs.Flush();
            }
 
            return options.AttachmentSave_LogicalSaveBaseUrl + fileUrl;
        }
        #endregion
 
        #region 阿里云上传方法(File)
        /// <summary>
        /// 阿里云上传方法(File)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileExt"></param>
        /// <param name="file"></param>
        /// <returns></returns>
        public async Task<string> UpLoadFileForAliYunOSS(SYSDictionaryAttachmentSetting options, string fileExt, IFormFile file)
        {
 
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            //上传到阿里云
            await using var fileStream = file.OpenReadStream();
            var md5 = OssUtils.ComputeContentMd5(fileStream, file.Length);
 
            var filePath = options.AttachmentSavePath + today + "/" + newFileName; //云文件保存路径
            //初始化阿里云配置--外网Endpoint、访问ID、访问password
            var aliYun = new OssClient(options.AttachmentSave_AliOSSEndpoint, options.AttachmentSave_AliOSSAccessKeyID, options.AttachmentSave_AliOSSAccessKeySecret);
            //将文件md5值赋值给meat头信息,服务器验证文件MD5
            var objectMeta = new ObjectMetadata
            {
                ContentMd5 = md5
            };
 
 
            var task = Task.Run(() =>
                //文件上传--空间名、文件保存路径、文件流、meta头信息(文件md5) //返回meta头信息(文件md5)
                aliYun.PutObject(options.AttachmentSave_AliOSSBucketName, filePath, fileStream, objectMeta)
 
 
 
              );
            //等待完成
            try
            {
                task.Wait();
            }
            catch (AggregateException ex)
            {
 
                throw Oops.Oh(ex.Message);
            }
 
            //返回给UEditor的插入编辑器的图片的src
 
            return options.AttachmentSave_AliOSSSaveBaseUrl + filePath;
        }
 
        #endregion
 
        #region 腾讯云存储上传方法(File)
        /// <summary>
        /// 腾讯云存储上传方法(File)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileExt"></param>
        /// <param name="file"></param>
        /// <returns></returns>
        public async Task<string> UpLoadFileForQCloudOSS(SYSDictionaryAttachmentSetting options, string fileExt, IFormFile file)
        {
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            var filePath = options.AttachmentSavePath + today + "/" + newFileName; //云文件保存路径
 
            //上传到腾讯云OSS
            //初始化 CosXmlConfig
            string appid = options.AttachmentSave_TencentAPPID;//设置腾讯云账户的账户标识 APPID
            string region = options.AttachmentSave_TencentCosRegion; //设置一个默认的存储桶地域
            CosXmlConfig config = new CosXmlConfig.Builder()
                //.SetAppid(appid)
                .IsHttps(true)  //设置默认 HTTPS 请求
                .SetRegion(region)  //设置一个默认的存储桶地域
                .SetDebugLog(true)  //显示日志
                .Build();  //创建 CosXmlConfig 对象
 
            long durationSecond = 600;  //每次请求签名有效时长,单位为秒
            QCloudCredentialProvider qCloudCredentialProvider = new DefaultQCloudCredentialProvider(options.AttachmentSave_TencentSecretId, options.AttachmentSave_TencentSecretKey, durationSecond);
 
 
            byte[] bytes;
            await using (var ms = new MemoryStream())
            {
                await file.CopyToAsync(ms);
                bytes = ms.ToArray();
            }
            try
            {
 
                var cosXml = new CosXmlServer(config, qCloudCredentialProvider);
                COSXML.Model.Object.PutObjectRequest putObjectRequest = new COSXML.Model.Object.PutObjectRequest(options.AttachmentSave_TencentBucketName, filePath, bytes);
                cosXml.PutObject(putObjectRequest);
            }
            catch (COSXML.CosException.CosClientException clientEx)
            {
 
                throw Oops.Oh(clientEx.Message);
            }
            catch (COSXML.CosException.CosServerException serverEx)
            {
 
                throw Oops.Oh(serverEx.GetInfo);
            }
 
 
            return options.AttachmentSave_TencentSaveBaseUrl + filePath;
        }
        #endregion
 
        #region 七牛云存储上传(File)
        /// <summary>
        /// 七牛云存储上传(File)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileExt"></param>
        /// <param name="file"></param>
        /// <returns></returns>
        public async Task<string> UpLoadFileForQiNiuKoDo(SYSDictionaryAttachmentSetting options, string fileExt, IFormFile file)
        {
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_fffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
 
            Mac mac = new Mac(options.AttachmentSave_QiNiuKodoAK, options.AttachmentSave_QiNiuKodoSK);
 
            byte[] bytes;
            await using (var ms = new MemoryStream())
            {
                await file.CopyToAsync(ms);
                bytes = ms.ToArray();
            }
 
            // 设置上传策略
            PutPolicy putPolicy = new PutPolicy();
            // 设置要上传的目标空间
            putPolicy.Scope = options.AttachmentSave_QiNiuKodoBucketName;
            // 上传策略的过期时间(单位:秒)
            putPolicy.SetExpires(3600);
            // 文件上传完毕后,在多少天后自动被删除
            //putPolicy.DeleteAfterDays = 1;
            // 生成上传token
            string token = Qiniu.Util.Auth.CreateUploadToken(mac, putPolicy.ToJsonString());
 
            Config config = new Config();
            // 设置 http 或者 https 上传
            config.UseHttps = true;
            config.UseCdnDomains = true;
            config.ChunkSize = ChunkUnit.U512K;
 
            UploadManager um = new UploadManager(config);
            var fileTemp = (options?.AttachmentSavePath?.Substring(1) ?? "") + newFileName;
            var task = Task.Run(() => um.UploadData(bytes, fileTemp, token, null));
            task.Wait();
            var outData = task.Result;
            if (outData?.Code != 200)
                throw Oops.Oh(outData?.Text);
            return options.AttachmentSave_QiNiuKodoSaveBaseUrl + options.AttachmentSavePath + newFileName;
        }
        #endregion
 
 
        #region 本地上传方法(Base64)
 
        /// <summary>
        /// 本地上传方法(Base64)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="memStream"></param>     
        /// <returns></returns>
        public async Task<string> UpLoadBase64ForLocalStorage(SYSDictionaryAttachmentSetting options, MemoryStream memStream)
        {
 
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + ".jpg";
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            byte[] data = new byte[memStream.Length];
            memStream.Seek(0, SeekOrigin.Begin);
            memStream.Read(data, 0, Convert.ToInt32(memStream.Length));
            SixLabors.ImageSharp.Image image = SixLabors.ImageSharp.Image.Load(new MemoryStream(data));
 
            var saveUrl = options.AttachmentSavePath + today + "/";
            var dirPath = App.WebHostEnvironment.WebRootPath + saveUrl;
            if (!Directory.Exists(dirPath)) Directory.CreateDirectory(dirPath);
            var filePath = dirPath + newFileName;
            var fileUrl = saveUrl + newFileName;
 
 
            //保存到图片
            await image.SaveAsync(filePath);
 
            return options.AttachmentSave_LogicalSaveBaseUrl + fileUrl;
        }
        #endregion
 
        #region 阿里云上传方法(Base64)
        /// <summary>
        /// 阿里云上传方法(Base64)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="memStream"></param>
        /// <returns></returns>
        public async Task<string> UpLoadBase64ForAliYunOSS(SYSDictionaryAttachmentSetting options, MemoryStream memStream)
        {
 
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + ".jpg";
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            // 设置当前流的位置为流的开始
            memStream.Seek(0, SeekOrigin.Begin);
 
            await using var fileStream = memStream;
            var md5 = OssUtils.ComputeContentMd5(fileStream, memStream.Length);
 
            var filePath = options.AttachmentSavePath + today + "/" + newFileName; //云文件保存路径
            //初始化阿里云配置--外网Endpoint、访问ID、访问password
            var aliyun = new OssClient(options.AttachmentSave_AliOSSEndpoint, options.AttachmentSave_AliOSSAccessKeyID, options.AttachmentSave_AliOSSAccessKeySecret);
            //将文件md5值赋值给meat头信息,服务器验证文件MD5
            var objectMeta = new ObjectMetadata
            {
                ContentMd5 = md5
            };
            try
            {
                //文件上传--空间名、文件保存路径、文件流、meta头信息(文件md5) //返回meta头信息(文件md5)
                aliyun.PutObject(options.AttachmentSave_AliOSSBucketName, filePath, fileStream, objectMeta);
            }
            catch (AggregateException ex)
            {
 
                throw Oops.Oh(ex.Message);
            }
 
 
            //返回给UEditor的插入编辑器的图片的src
 
            return options.AttachmentSave_AliOSSSaveBaseUrl + filePath;
 
        }
 
        #endregion
 
        #region 腾讯云存储上传方法(Base64)
 
        /// <summary>
        /// 腾讯云存储上传方法(Base64)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="bytes"></param>
        /// <returns></returns>
        public async Task<string> UpLoadBase64ForQCloudOSS(SYSDictionaryAttachmentSetting options, byte[] bytes)
 
        {
 
 
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + ".jpg";
            var today = DateTime.Now.ToString("yyyyMMdd");
 
            //初始化 CosXmlConfig
            string appid = options.AttachmentSave_TencentAPPID;//设置腾讯云账户的账户标识 APPID
            string region = options.AttachmentSave_TencentCosRegion; //设置一个默认的存储桶地域
            CosXmlConfig config = new CosXmlConfig.Builder()
                //.SetAppid(appid)
                .IsHttps(true)  //设置默认 HTTPS 请求
                .SetRegion(region)  //设置一个默认的存储桶地域
                .SetDebugLog(true)  //显示日志
                .Build();  //创建 CosXmlConfig 对象
 
            long durationSecond = 600;  //每次请求签名有效时长,单位为秒
 
            QCloudCredentialProvider qCloudCredentialProvider = new DefaultQCloudCredentialProvider(options.AttachmentSave_TencentSecretId, options.AttachmentSave_TencentSecretKey, durationSecond);
 
            var cosXml = new CosXmlServer(config, qCloudCredentialProvider);
 
            var filePath = options.AttachmentSavePath + today + "/" + newFileName; //云文件保存路径
            try
            {
                COSXML.Model.Object.PutObjectRequest putObjectRequest = new COSXML.Model.Object.PutObjectRequest(options.AttachmentSave_TencentBucketName, filePath, bytes);
                var task = Task.Run(() => cosXml.PutObject(putObjectRequest));
 
 
 
                task.Wait();
 
            }
 
 
            catch (COSXML.CosException.CosClientException clientEx)
            {
 
                throw Oops.Oh(clientEx.Message);
            }
            catch (COSXML.CosException.CosServerException serverEx)
            {
 
                throw Oops.Oh(serverEx.GetInfo());
            }
 
 
            return options.AttachmentSave_TencentSaveBaseUrl + filePath;
        }
        #endregion
 
        #region 牛云上传方法(Base64)
 
        /// <summary>
        /// 七牛云上传方法(Base64)
        /// </summary>
        /// <param name="options"></param>
        /// <param name="bytes"></param>
        /// <returns></returns>
        public async Task<string> UpLoadBase64ForQiNiuKoDo(SYSDictionaryAttachmentSetting options, byte[] bytes)
        {
            var newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_fffff", DateTimeFormatInfo.InvariantInfo) + ".jpg";
 
            Mac mac = new Mac(options.AttachmentSave_QiNiuKodoAK, options.AttachmentSave_QiNiuKodoSK);
 
            // 设置上传策略
            PutPolicy putPolicy = new PutPolicy();
            // 设置要上传的目标空间
            putPolicy.Scope = options.AttachmentSave_QiNiuKodoBucketName;
            // 上传策略的过期时间(单位:秒)
            putPolicy.SetExpires(3600);
            // 文件上传完毕后,在多少天后自动被删除
            //putPolicy.DeleteAfterDays = 1;
            // 生成上传token
            string token = Qiniu.Util.Auth.CreateUploadToken(mac, putPolicy.ToJsonString());
 
            Config config = new Config();
            // 设置 http 或者 https 上传
            config.UseHttps = true;
            config.UseCdnDomains = true;
            config.ChunkSize = ChunkUnit.U512K;
            var fileTemp = (options?.AttachmentSavePath?.Substring(1) ?? "") + newFileName;
            UploadManager um = new UploadManager(config);
            var task = Task.Run(() => um.UploadData(bytes, fileTemp, token, null));
            //   var outData = um.UploadData(bytes, newFileName, token, null);
            task.Wait();
            var outdata = task.Result;
            if (outdata?.Code != 200)
                throw Oops.Oh(outdata?.Text);
            return options.AttachmentSave_QiNiuKodoSaveBaseUrl + options.AttachmentSavePath + newFileName;
        }
        #endregion
 
 
 
        #region 删除文件
 
        /// <summary>
        /// 删除本地文件
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileUrl"></param>
        /// <returns></returns>
        public async Task<bool> DelFileForLocalStorage(SYSDictionaryAttachmentSetting options, string fileUrl)
        {
            string key = App.WebHostEnvironment.WebRootPath + (options.AttachmentSavePath?.RemoveStartWithStr("/") ?? "") + fileUrl.GetFileName();
 
            File.Delete(key);
            return true;
        }
        /// <summary>
        /// 删除七牛文件夹
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileUrl"></param>
        /// <returns></returns>
        public async Task<bool> DelFileForQiNiuKoDo(SYSDictionaryAttachmentSetting options, string fileUrl)
        {
            Config config = new Config();
            var a = fileUrl.GetFileName();
            Mac mac = new Mac(options.AttachmentSave_QiNiuKodoAK, options.AttachmentSave_QiNiuKodoSK);
            BucketManager bucketManager = new BucketManager(mac, config);
            string key = (options.AttachmentSavePath?.RemoveStartWithStr("/") ?? "") + fileUrl.GetFileName();
 
            var task = Task.Run(() => bucketManager.Delete(options.AttachmentSave_QiNiuKodoBucketName, key));
            //   var outData = um.UploadData(bytes, newFileName, token, null);
            task.Wait();
            var outdata = task.Result;
            if (outdata?.Code != 200)
                throw Oops.Oh(outdata?.Text);
            return true;
 
        }
        /// <summary>
        /// 腾讯云删除
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileUrl">带xxx.xx的链接地址</param>
        /// <returns></returns>
        public async Task<bool> DelFileForQCloudOSS(SYSDictionaryAttachmentSetting options, string fileUrl)
 
        {
 
 
 
 
            //初始化 CosXmlConfig
            string appid = options.AttachmentSave_TencentAPPID;//设置腾讯云账户的账户标识 APPID
            string region = options.AttachmentSave_TencentCosRegion; //设置一个默认的存储桶地域
            CosXmlConfig config = new CosXmlConfig.Builder()
                //.SetAppid(appid)
                .IsHttps(true)  //设置默认 HTTPS 请求
                .SetRegion(region)  //设置一个默认的存储桶地域
                .SetDebugLog(true)  //显示日志
                .Build();  //创建 CosXmlConfig 对象
 
            long durationSecond = 600;  //每次请求签名有效时长,单位为秒
 
            QCloudCredentialProvider qCloudCredentialProvider = new DefaultQCloudCredentialProvider(options.AttachmentSave_TencentSecretId, options.AttachmentSave_TencentSecretKey, durationSecond);
 
            var cosXml = new CosXmlServer(config, qCloudCredentialProvider);
 
            string key = (options.AttachmentSavePath?.RemoveStartWithStr("/") ?? "") + fileUrl.GetFileName();
            try
            {
                COSXML.Model.Object.DeleteObjectRequest DelObjectRequest = new COSXML.Model.Object.DeleteObjectRequest(options.AttachmentSave_TencentBucketName, key);
                var task = Task.Run(() => cosXml.DeleteObject(DelObjectRequest));
 
 
 
                task.Wait();
 
            }
 
 
            catch (COSXML.CosException.CosClientException clientEx)
            {
 
                throw Oops.Oh(clientEx.Message);
            }
            catch (COSXML.CosException.CosServerException serverEx)
            {
 
                throw Oops.Oh(serverEx.GetInfo());
            }
 
 
            return true;
        }
 
        /// <summary>
        /// 腾讯云删除
        /// </summary>
        /// <param name="options"></param>
        /// <param name="fileUrl">带xxx.xx的链接地址</param>
        /// <returns></returns>
        public async Task<bool> DelFileForAliYunOSS(SYSDictionaryAttachmentSetting options, string fileUrl)
        {
 
 
 
 
 
 
 
 
 
 
            //初始化阿里云配置--外网Endpoint、访问ID、访问password
            var aliyun = new OssClient(options.AttachmentSave_AliOSSEndpoint, options.AttachmentSave_AliOSSAccessKeyID, options.AttachmentSave_AliOSSAccessKeySecret);
 
            try
            {
                var task = Task.Run(() => aliyun.DeleteObject(options.AttachmentSave_AliOSSBucketName, (options.AttachmentSavePath?.RemoveStartWithStr("/") ?? "") + fileUrl.GetFileName()));
 
 
                task.Wait();
 
            }
            catch (Exception ex)
            {
 
                throw Oops.Oh(ex.Message);
            }
 
 
            //返回给UEditor的插入编辑器的图片的src
 
            return true;
 
        }
        #endregion
 
 
    }
}