PathUtils.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. using System.IO;
  2. using System.Reflection;
  3. using System.Text.RegularExpressions;
  4. namespace Tede.Data.Tests.Utils
  5. {
  6. public static class PathUtils
  7. {
  8. public const char SeparatorChar = '\\';
  9. public static readonly char[] InvalidPathChars = Path.GetInvalidPathChars();
  10. public static string Combine(params string[] paths)
  11. {
  12. var retval = string.Empty;
  13. if (paths != null && paths.Length > 0)
  14. {
  15. retval = paths[0]?.Replace(PageUtils.SeparatorChar, SeparatorChar).TrimEnd(SeparatorChar) ?? string.Empty;
  16. for (var i = 1; i < paths.Length; i++)
  17. {
  18. var path = paths[i] != null ? paths[i].Replace(PageUtils.SeparatorChar, SeparatorChar).Trim(SeparatorChar) : string.Empty;
  19. retval = Path.Combine(retval, path);
  20. }
  21. }
  22. return retval;
  23. }
  24. public static string Add(string rootPath, params string[] paths)
  25. {
  26. if (paths != null && paths.Length > 0)
  27. {
  28. foreach (var path in paths)
  29. {
  30. var cleanPath = RemoveParentPath(path);
  31. if (!string.IsNullOrWhiteSpace(cleanPath))
  32. {
  33. rootPath = Combine(rootPath, cleanPath);
  34. }
  35. }
  36. }
  37. return rootPath;
  38. }
  39. /// <summary>
  40. /// 根据路径扩展名判断是否为文件夹路径
  41. /// </summary>
  42. /// <param name="path"></param>
  43. /// <returns></returns>
  44. public static bool IsDirectoryPath(string path)
  45. {
  46. var retval = false;
  47. if (!string.IsNullOrEmpty(path))
  48. {
  49. var ext = Path.GetExtension(path);
  50. if (string.IsNullOrEmpty(ext)) //path为文件路径
  51. {
  52. retval = true;
  53. }
  54. }
  55. return retval;
  56. }
  57. public static bool IsFilePath(string val)
  58. {
  59. try
  60. {
  61. return FileUtils.IsFileExists(val);
  62. }
  63. catch
  64. {
  65. return false;
  66. }
  67. }
  68. public static string GetExtension(string path)
  69. {
  70. var retval = string.Empty;
  71. if (!string.IsNullOrEmpty(path))
  72. {
  73. path = PageUtils.RemoveQueryString(path);
  74. path = path.Trim('/', '\\').Trim();
  75. try
  76. {
  77. retval = Path.GetExtension(path);
  78. }
  79. catch
  80. {
  81. // ignored
  82. }
  83. }
  84. return retval;
  85. }
  86. public static string RemoveExtension(string fileName)
  87. {
  88. var retval = string.Empty;
  89. if (!string.IsNullOrEmpty(fileName))
  90. {
  91. var index = fileName.LastIndexOf('.');
  92. retval = index != -1 ? fileName.Substring(0, index) : fileName;
  93. }
  94. return retval;
  95. }
  96. public static string RemoveParentPath(string path)
  97. {
  98. var retval = string.Empty;
  99. if (!string.IsNullOrEmpty(path))
  100. {
  101. retval = path.Replace("../", string.Empty);
  102. retval = retval.Replace("./", string.Empty);
  103. }
  104. return retval;
  105. }
  106. public static string GetFileName(string filePath)
  107. {
  108. return Path.GetFileName(filePath);
  109. }
  110. public static string GetFileNameWithoutExtension(string filePath)
  111. {
  112. return Path.GetFileNameWithoutExtension(filePath);
  113. }
  114. public static string GetDirectoryName(string path, bool isFile)
  115. {
  116. if (string.IsNullOrWhiteSpace(path)) return string.Empty;
  117. if (isFile)
  118. {
  119. path = Path.GetDirectoryName(path);
  120. }
  121. if (!string.IsNullOrEmpty(path))
  122. {
  123. var directoryInfo = new DirectoryInfo(path);
  124. return directoryInfo.Name;
  125. }
  126. return string.Empty;
  127. }
  128. public static string GetPathDifference(string rootPath, string path)
  129. {
  130. if (!string.IsNullOrEmpty(path) && StringUtils.StartsWithIgnoreCase(path, rootPath))
  131. {
  132. var retval = path.Substring(rootPath.Length, path.Length - rootPath.Length);
  133. return retval.Trim('/', '\\');
  134. }
  135. return string.Empty;
  136. }
  137. public static string GetBinDirectoryPath(string relatedPath)
  138. {
  139. string assemblyFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
  140. return Combine(assemblyFolder, RemoveParentPath(relatedPath));
  141. }
  142. public static string RemovePathInvalidChar(string filePath)
  143. {
  144. if (string.IsNullOrEmpty(filePath))
  145. return filePath;
  146. var invalidChars = new string(Path.GetInvalidPathChars());
  147. string invalidReStr = $"[{Regex.Escape(invalidChars)}]";
  148. return Regex.Replace(filePath, invalidReStr, "");
  149. }
  150. }
  151. }