代码拉取完成,页面将自动刷新
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using GitCommands.Utils;
using JetBrains.Annotations;
namespace GitCommands
{
public static class PathUtil
{
private static readonly IEnvironmentAbstraction EnvironmentAbstraction = new EnvironmentAbstraction();
private static readonly IEnvironmentPathsProvider EnvironmentPathsProvider = new EnvironmentPathsProvider(EnvironmentAbstraction);
public static readonly char PosixDirectorySeparatorChar = '/';
public static readonly char NativeDirectorySeparatorChar = Path.DirectorySeparatorChar;
/// <summary>Replaces native path separator with posix path separator.</summary>
[NotNull]
public static string ToPosixPath([NotNull] this string path)
{
return path.Replace(NativeDirectorySeparatorChar, PosixDirectorySeparatorChar);
}
/// <summary>Replaces '\' with '/'.</summary>
[NotNull]
public static string ToNativePath([NotNull] this string path)
{
return path.Replace(PosixDirectorySeparatorChar, NativeDirectorySeparatorChar);
}
/// <summary>
/// Removes any trailing path separator character from the end of <paramref name="dirPath"/>.
/// </summary>
[ContractAnnotation("dirPath:null=>null")]
[ContractAnnotation("dirPath:notnull=>notnull")]
public static string RemoveTrailingPathSeparator([CanBeNull] this string dirPath)
{
if (dirPath?.Length > 0 &&
(dirPath[dirPath.Length - 1] == NativeDirectorySeparatorChar ||
dirPath[dirPath.Length - 1] == PosixDirectorySeparatorChar))
{
return dirPath.Substring(0, dirPath.Length - 1);
}
return dirPath;
}
/// <summary>
/// Code guideline: "A directory path should always end with / or \.
/// Better use Path.Combine instead of Setting.PathSeparator"
///
/// This method can be used to add (or keep) a trailing path separator character to a directory path.
/// </summary>
[ContractAnnotation("dirPath:null=>null")]
[ContractAnnotation("dirPath:notnull=>notnull")]
public static string EnsureTrailingPathSeparator([CanBeNull] this string dirPath)
{
if (!dirPath.IsNullOrEmpty() &&
dirPath[dirPath.Length - 1] != NativeDirectorySeparatorChar &&
dirPath[dirPath.Length - 1] != PosixDirectorySeparatorChar)
{
dirPath += NativeDirectorySeparatorChar;
}
return dirPath;
}
public static bool IsLocalFile([NotNull] string fileName)
{
return !Regex.IsMatch(fileName, @"^(\w+):\/\/([\S]+)");
}
/// <summary>
/// A naive way to check whether the given path is a URL by checking
/// whether it starts with either 'http', 'ssh' or 'git'.
/// </summary>
/// <param name="path">A path to check.</param>
/// <returns><see langword="true"/> if the given path starts with 'http', 'ssh' or 'git'; otherwise <see langword="false"/>.</returns>
[ContractAnnotation("path:null=>false")]
[Pure]
public static bool IsUrl(string path)
{
return !string.IsNullOrEmpty(path) &&
(path.StartsWith("http", StringComparison.CurrentCultureIgnoreCase) ||
path.StartsWith("git", StringComparison.CurrentCultureIgnoreCase) ||
path.StartsWith("ssh", StringComparison.CurrentCultureIgnoreCase));
}
[NotNull]
public static string GetFileName([NotNull] string fileName)
{
var pathSeparators = new[] { NativeDirectorySeparatorChar, PosixDirectorySeparatorChar };
var pos = fileName.LastIndexOfAny(pathSeparators);
if (pos != -1)
{
fileName = fileName.Substring(pos + 1);
}
return fileName;
}
[NotNull]
public static string NormalizePath([NotNull] this string path)
{
if (string.IsNullOrWhiteSpace(path))
{
return string.Empty;
}
try
{
return Path.GetFullPath(new Uri(path).LocalPath);
}
catch (UriFormatException)
{
return string.Empty;
}
}
[ContractAnnotation("=>false,posixPath:null")]
[ContractAnnotation("=>true,posixPath:notnull")]
public static bool TryConvertWindowsPathToPosix([NotNull] string path, out string posixPath)
{
var directoryInfo = new DirectoryInfo(path);
if (!directoryInfo.Exists)
{
posixPath = null;
return false;
}
posixPath = "/" + directoryInfo.FullName.ToPosixPath().Remove(1, 1);
return true;
}
[NotNull]
public static string GetRepositoryName([CanBeNull] string repositoryUrl)
{
string name = "";
if (repositoryUrl != null)
{
const string standardRepositorySuffix = ".git";
string path = repositoryUrl.TrimEnd('\\', '/');
if (path.EndsWith(standardRepositorySuffix))
{
path = path.Substring(0, path.Length - standardRepositorySuffix.Length);
}
if (path.Contains("\\") || path.Contains("/"))
{
name = path.Substring(path.LastIndexOfAny(new[] { '\\', '/' }) + 1);
}
}
return name;
}
[ContractAnnotation("=>false,fullPath:null")]
[ContractAnnotation("=>true,fullPath:notnull")]
public static bool TryFindFullPath([NotNull] string fileName, out string fullPath)
{
try
{
if (File.Exists(fileName))
{
fullPath = Path.GetFullPath(fileName);
return true;
}
foreach (var path in EnvironmentPathsProvider.GetEnvironmentValidPaths())
{
fullPath = Path.Combine(path, fileName);
if (File.Exists(fullPath))
{
return true;
}
}
}
catch
{
// do nothing
}
fullPath = null;
return false;
}
[ContractAnnotation("=>false,shellPath:null")]
[ContractAnnotation("=>true,shellPath:notnull")]
public static bool TryFindShellPath([NotNull] string shell, out string shellPath)
{
try
{
shellPath = Path.Combine(EnvironmentAbstraction.GetFolderPath(Environment.SpecialFolder.ProgramFiles), "Git", shell);
if (File.Exists(shellPath))
{
return true;
}
shellPath = Path.Combine(AppSettings.GitBinDir, shell);
if (File.Exists(shellPath))
{
return true;
}
if (TryFindFullPath(shell, out shellPath))
{
return true;
}
}
catch
{
// do nothing
}
shellPath = null;
return false;
}
[NotNull]
public static string GetDisplayPath([NotNull] string path)
{
// TODO verify whether the user profile contains forwards/backwards slashes on other platforms
var userProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var comparison = EnvUtils.RunningOnWindows() ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal;
if (path.StartsWith(userProfile, comparison))
{
var length = path.Length - userProfile.Length;
if (path.EndsWith("/") || path.EndsWith("\\"))
{
length--;
}
return $"~{path.Substring(userProfile.Length, length)}";
}
return path;
}
[NotNull, ItemNotNull]
public static IEnumerable<string> FindAncestors([NotNull] string path)
{
path = path.RemoveTrailingPathSeparator();
if (string.IsNullOrWhiteSpace(path))
{
yield break;
}
while (true)
{
path = Path.GetDirectoryName(path);
if (string.IsNullOrEmpty(path))
{
yield break;
}
yield return path.EnsureTrailingPathSeparator();
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。