我正在创建 web Api 以从服务器文件夹中检索图像,在 c# 中,我需要代码,在此先感谢,
[HttpPost]
[Route("Fileretrive")]
public void retrive(string filename)
{
//var ctx = HttpContext.Current;
var root = HttpContext.Current.Server.MapPath("~/Photos");
var tempath = Path.Combine(root,filename);
Directory.GetFiles(tempath);
byte[] byteArray = null;
byteArray = System.IO.File.ReadAllBytes(tempath);
}