在C#中获取文件相对于某个目录的路径
Get path of file relative to some directory in C#
假设我有以下路径和基本目录
string FileDirectory = "/tmp/simple";
string fullPath = "/tmp/simple/s1/s1.txt";
那如何在不写循环的情况下找到s1.txt
相对于FileDirectory
的路径呢?
即;我想要 s1/s1.txt
作为输出。
这看起来像是 Substring 操作的逆运算。
所以我喜欢
string relativePath = fullPath.Substring(FileDirectory.Length, (fullPath.Length - FileDirectory.Length));
是否有任何现有功能可以实现相同的功能?
我想你在找 Path.GetRelativePath(...)
。像这样使用:
string FileDirectory = "/tmp/simple";
string fullPath = "/tmp/simple/s1/s1.txt";
string result = Path.GetRelativePath(FileDirectory, fullPath);
// s1\s1.txt
要获得使用正斜杠 /
的结果,您可以对结果执行简单的 Replace()
:
result = result.Replace("\", "/");
// s1/s1.txt
假设我有以下路径和基本目录
string FileDirectory = "/tmp/simple";
string fullPath = "/tmp/simple/s1/s1.txt";
那如何在不写循环的情况下找到s1.txt
相对于FileDirectory
的路径呢?
即;我想要 s1/s1.txt
作为输出。
这看起来像是 Substring 操作的逆运算。
所以我喜欢
string relativePath = fullPath.Substring(FileDirectory.Length, (fullPath.Length - FileDirectory.Length));
是否有任何现有功能可以实现相同的功能?
我想你在找 Path.GetRelativePath(...)
。像这样使用:
string FileDirectory = "/tmp/simple";
string fullPath = "/tmp/simple/s1/s1.txt";
string result = Path.GetRelativePath(FileDirectory, fullPath);
// s1\s1.txt
要获得使用正斜杠 /
的结果,您可以对结果执行简单的 Replace()
:
result = result.Replace("\", "/");
// s1/s1.txt