gpt4 book ai didi

c# - 给定一个文件系统路径,是否有更短的方法来提取不带扩展名的文件名?

转载 作者:IT王子 更新时间:2023-10-29 03:28:54 26 4
gpt4 key购买 nike

我在 WPF C# 中编程。我有例如以下路径:

C:\Program Files\hello.txt

我想从中提取hello

路径是从数据库中检索到的字符串。目前,我正在使用以下代码通过 '\' 拆分路径,然后通过 '.' 再次拆分:

string path = "C:\\Program Files\\hello.txt";
string[] pathArr = path.Split('\\');
string[] fileArr = pathArr.Last().Split('.');
string fileName = fileArr.Last().ToString();

它有效,但我相信应该有更短、更智能的解决方案。有什么想法吗?

最佳答案

Path.GetFileName

Returns the file name and extension of a file path that is representedby a read-only character span.


Path.GetFileNameWithoutExtension

Returns the file name without the extension of a file path that isrepresented by a read-only character span.


Path类精彩。

关于c# - 给定一个文件系统路径,是否有更短的方法来提取不带扩展名的文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6921105/

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