PathFormater.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text.RegularExpressions;
  7. using System.Web;
  8. /// <summary>
  9. /// PathFormater 的摘要说明
  10. /// </summary>
  11. ///
  12. namespace LYFZ.WanYuKeFuData.UEditControl
  13. {
  14. public static class PathFormatter
  15. {
  16. public static string Format(string originFileName, string pathFormat)
  17. {
  18. if (String.IsNullOrWhiteSpace(pathFormat))
  19. {
  20. pathFormat = "{filename}{rand:6}";
  21. }
  22. var invalidPattern = new Regex(@"[\\\/\:\*\?\042\<\>\|]");
  23. originFileName = invalidPattern.Replace(originFileName, "");
  24. string extension = Path.GetExtension(originFileName);
  25. string filename = Path.GetFileNameWithoutExtension(originFileName);
  26. pathFormat = pathFormat.Replace("{filename}", filename);
  27. pathFormat = new Regex(@"\{rand(\:?)(\d+)\}", RegexOptions.Compiled).Replace(pathFormat, new MatchEvaluator(delegate(Match match)
  28. {
  29. var digit = 6;
  30. if (match.Groups.Count > 2)
  31. {
  32. digit = Convert.ToInt32(match.Groups[2].Value);
  33. }
  34. var rand = new Random();
  35. return rand.Next((int)Math.Pow(10, digit), (int)Math.Pow(10, digit + 1)).ToString();
  36. }));
  37. pathFormat = pathFormat.Replace("{time}", DateTime.Now.Ticks.ToString());
  38. pathFormat = pathFormat.Replace("{yyyy}", DateTime.Now.Year.ToString());
  39. pathFormat = pathFormat.Replace("{yy}", (DateTime.Now.Year % 100).ToString("D2"));
  40. pathFormat = pathFormat.Replace("{mm}", DateTime.Now.Month.ToString("D2"));
  41. pathFormat = pathFormat.Replace("{dd}", DateTime.Now.Day.ToString("D2"));
  42. pathFormat = pathFormat.Replace("{hh}", DateTime.Now.Hour.ToString("D2"));
  43. pathFormat = pathFormat.Replace("{ii}", DateTime.Now.Minute.ToString("D2"));
  44. pathFormat = pathFormat.Replace("{ss}", DateTime.Now.Second.ToString("D2"));
  45. return pathFormat + extension;
  46. }
  47. }
  48. }