假设我有以下路径和基本目录
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);
// s1s1.txt
要使用正斜杠/
获得结果,可以对结果执行简单的Replace()
:
result = result.Replace("\", "/");
// s1/s1.txt