使用c#删除变量的内容
本文关键字:变量 删除 使用 | 更新日期: 2023-09-27 17:50:43
我有这个代码内容
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
我该怎么做??
like:
ViewBag.files = filepath.where(x => x.contains("'klj.jpg"));