使用c#删除变量的内容

时间:2015-05-25 11:38:54

标签: c#

我有这段代码

string strAttachment_Path=QuestionData.FirstOrDefault().Attachment_Name;

var filepath = Directory.GetFiles(HttpContext.Server.MapPath("~" + strAttachment_Path));

ViewBag.files = filepath;

现在变量filepath中有3到4个路径,如

d:\Images\content\forum\abc.jpg

d:\Images\content\forum\def.jpg

d:\Images\content\forum\ghi.jpg

d:\Images\content\forum\klj.jpg

我只想要路径content\forum\klj.jpg

我该怎么做?

1 个答案:

答案 0 :(得分:1)

像那样:

ViewBag.files = filepath.where(x => x.contains("\klj.jpg"));