我已通过以下代码将 JSON 文件存储在我的项目文件夹外部,
System.IO.File.WriteAllText(System.Web.HttpContext.Current.Server.MapPath("JSON.json"), jSearializer.Serialize(modified_listofstrings));
但现在在另一种方法中,我只想读取该文件的名称,我应该如何做到这一点,
如果我以字符串形式读取文件,我会得到文件的内容,但我只想要存储它的文件的名称。
任何帮助将不胜感激。
--- 编辑的问题--- 包括文件名的代码。
string filename = ID.Replace(".", "_");
System.IO.File.WriteAllText(System.Web.HttpContext.Current.Server.MapPath(filename+".json"), jSearializer.Serialize(modified_listofstrings));