0
我使用此處聲明的代碼通過webapi http://bartwullems.blogspot.pe/2013/03/web-api-file-upload-set-filename.html
上傳文件。我還做了以下api列出我擁有的所有文件:已上傳文件但未在服務器上顯示
[HttpPost]
[Route("sharepoint/imageBrowser/listFiles")]
[SharePointContextFilter]
public async Task<HttpResponseMessage> Read()
{
string pathImages = HttpContext.Current.Server.MapPath("~/Content/images");
DirectoryInfo d = new DirectoryInfo(pathImages);//Assuming Test is your Folder
FileInfo[] Files = d.GetFiles(); //Getting Text files
List<object> lst = new List<object>();
foreach (FileInfo f in Files)
{
lst.Add(new
{
name = f.Name,
type = "f",
size = f.Length
});
}
return Request.CreateResponse(HttpStatusCode.OK, lst);
}
當調用此API時,會列出上傳的所有文件。但是,當我去湛藍的我沒有看到任何人的(Content.png是我手動上傳到Azure中的文件)
爲什麼這些文件,如果他們不出現在蔚藍上市。
感謝!不知道這個KUDU。這些文件在那裏,不知道爲什麼他們不出現在VS服務器窗口。 – Flezcano