在 C# 2.0 中删除附加在文件路径中的子文件夹的更好方法是什么
string EV_HOME = System.Environment.GetEnvironmentVariable("EV_HOME");
string myFilePath = EV_HOME + "\\MyFolder\\MySubFolder";
假设 EV_HOME
返回 C:\myprogram\leanrning\anotherfolder
如何删除文件夹 anotherfolder
并获取 myFilePath
作为这个
C:\myprogram\leanrning\MyFolder\MySubFolder
我所知道的是循环 Ev_HOME 值并将每个(除了最后一个)构建为一个新字符串。
谢谢。
string EV_HOME = System.Environment.GetEnvironmentVariable("EV_HOME");
string myFilePath = EV_HOME + "\\MyFolder\\MySubFolder";
Suppose EV_HOME
return C:\myprogram\leanrning\anotherfolder
How can I remove the folder anotherfolder
and get myFilePath
as this
C:\myprogram\leanrning\MyFolder\MySubFolder
What I know is loop the Ev_HOME value and build each one (except the last one) as a new string.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)