如何从文件路径获取目录(不包括根目录和文件名)
我有一个文件路径“C:\hello\hi\dotnet\abc.txt”。我只想要路径中的目录。
预期输出:
hello
hi
dotnet
我已经使用了 Path.DirectorySeparatorChar 但它不起作用。所以请帮助我解决这个问题。
I have a filepath say "C:\hello\hi\dotnet\abc.txt". I just want the directories from the path.
Expected Output :
hello
hi
dotnet
I have used Path.DirectorySeparatorChar
but it doesn't work.So help me out to solve this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用(根据评论进行编辑)
这就是结果:
YourResult[0]
包含 helloYourResult[1]
包含 hiYourResult[2]
包含 dotnet有关 MSDN 参考,请参阅:
use (EDIT as per comments)
And this is the result:
YourResult[0]
contains helloYourResult[1]
contains hiYourResult[2]
contains dotnetFor MSDN references see:
使用 string.Split 并忽略数组中的第一个和最后一个项目怎么样?
How about using string.Split and ignore the first and last items in the array?
怎么样:-
How about: -
您可以使用此功能
:
You can use this function
using:
你可以做
You Can Do