gpt4 book ai didi

c# - 从完整路径获取相对路径

转载 作者:太空狗 更新时间:2023-10-29 21:29:47 25 4
gpt4 key购买 nike

我必须从完整路径中获取排除相对路径的路径,说

相对路径是,C:\User\Documents\

完整路径,C:\User\Documents\Test\Folder2\test.pdf

我只想获取相对路径之后的路径,即 \Test\Folder2\test.pdf

我怎样才能做到这一点。

我正在使用 C# 作为编程语言

最佳答案

你不是在谈论相对,所以我将其称为部分路径。如果您可以确定部分路径是完整路径的一部分,那么它是一个简单的字符串操作:

string fullPath = @"C:\User\Documents\Test\Folder2\test.pdf";
string partialPath = @"C:\User\Documents\";
string resultingPath = fullPath.Substring(partialPath.Length);

虽然这需要一些错误检查 - 当 fullPath 或 partialPath 为 null 或两个路径具有相同长度时它将失败。

关于c# - 从完整路径获取相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7834983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com