Path.GetDirectoryName 方法 c# 之后路径中的双分隔符

发布于 2025-01-14 14:02:12 字数 309 浏览 0 评论 0原文

我想从 blob 绝对 Uri 获取目录: https://001.blob.core.windows.net/files/ 11-files.trg

为此,我使用 Path.GetDirectoryName 方法。结果我有: https:\\001.blob.core.windows.net\\文件。

为什么会出现双分隔符以及如何将其替换为单分隔符?

I want get directory from blob absolute Uri:
https://001.blob.core.windows.net/files/11-files.trg.

For this I use Path.GetDirectoryName method. As result I have:
https:\\001.blob.core.windows.net\\files.

Why does a double separator appear and how to replace it with a single one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2025-01-21 14:02:12

我认为 Path.GetDirectoryName 仅适用于相对路径,但不适用于 URL。所以我想到的第一件事是这样的:

var url = "https://001.blob.core.windows.net/files/11-files.trg";

var temp = new string(url.ToCharArray().Reverse().ToArray());
int index = temp.IndexOf('/');
temp = temp.Substring(index + 1 , temp.Length - index - 1);
var result = new string(temp.ToCharArray().Reverse().ToArray());

Console.WriteLine(result);
//output: https://001.blob.core.windows.net/files

I think Path.GetDirectoryName only works for relative paths, but not for URLs. So the first thing that comes to my mind is something like this:

var url = "https://001.blob.core.windows.net/files/11-files.trg";

var temp = new string(url.ToCharArray().Reverse().ToArray());
int index = temp.IndexOf('/');
temp = temp.Substring(index + 1 , temp.Length - index - 1);
var result = new string(temp.ToCharArray().Reverse().ToArray());

Console.WriteLine(result);
//output: https://001.blob.core.windows.net/files
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文