我有这段代码
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
我该怎么做?
答案 0 :(得分:1)
ViewBag.files = filepath.where(x => x.contains("\klj.jpg"));