假设我将此输入(基本目录)作为字符串(当然可以有不同的更长路径):
c:\Projects\ (could be also c:\Projects)
和此输入(子目录中的文件)为字符串:
c:\Projects\bin\file1.exe
c:\Projects\src\folder\file2.exe
获得此类字符串的最佳方法是什么:
bin
src\folder
也就是说,从我想要排除基本目录(给定的)和文件名的完整路径。
答案 0 :(得分:3)
你可以遵循像<; p>这样的逻辑
string root = @"c:\Projects";
string path = @"c:\Projects\src\folder\file2.exe";
path = path.Replace(root, "").Replace(Path.GetFileName(path), "").Trim('\\');
Console.WriteLine(path);
\
或bin\
src\folder\
字符可能结尾
醇>
答案 1 :(得分:1)
您可以使用
string s = @"c:\Projects\bin\file1.exe";
var split_s = s.Split(new char[]{'\\'}).Skip(2);
Console.WriteLine(string.Join(@"\", split_s.Take(split_s.Count() - 1).ToArray()));
这会将字符串拆分为斜杠,跳过前两个条目(drive和projects文件夹),然后获取下一个X个目录 - 不包括文件名。然后再加入它。
答案 2 :(得分:1)
您可以使用以下静态方法计算给定父路径的相对父路径:
public static string GetRelativeParentPath(string basePath, string path)
{
return GetRelativePath(basePath, Path.GetDirectoryName(path));
}
public static string GetRelativePath(string basePath, string path)
{
// normalize paths
basePath = Path.GetFullPath(basePath);
path = Path.GetFullPath(path);
// same path case
if (basePath == path)
return string.Empty;
// path is not contained in basePath case
if (!path.StartsWith(basePath))
return string.Empty;
// extract relative path
if (basePath[basePath.Length - 1] != Path.DirectorySeparatorChar)
{
basePath += Path.DirectorySeparatorChar;
}
return path.Substring(basePath.Length);
}
这就是你可以使用它的方式:
static void Main(string[] args)
{
string basePath = @"c:\Projects\";
string file1 = @"c:\Projects\bin\file1.exe";
string file2 = @"c:\Projects\src\folder\file2.exe";
Console.WriteLine(GetRelativeParentPath(basePath, file1));
Console.WriteLine(GetRelativeParentPath(basePath, file2));
}
输出:
bin
src\folder
答案 3 :(得分:0)
你也可以使用Regex,因为它是字符串的问题,
string ResultString = null;
try {
ResultString = Regex.Match(SubjectString, "c:\\\\Projects\\\\(?<data>.*?)\\\\(\\w|\\d)* (\\.exe|.png|jpeg)",
RegexOptions.Multiline).Groups["data"].Value;
} catch (ArgumentException ex) {
// Syntax error in the regular expression
}
您可以排除或包含更多文件类型,例如我添加的png和jpeg.Drawback是字符串的初始部分必须从C:/ Project
开始