how to get https image directory in subfolder image to storage in view list the code is below
It shown error in DirectoryInfo path
DirectoryInfo dir = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath("http://www.blueocktopus.com/RRImages/all/"));
FileInfo[] file = dir.GetFiles();
List list = new List();
foreach (FileInfo file2 in file)
{
if (file2.Extension == ".png" || file2.Extension == ".jpg" || file2.Extension == ".jpeg")
{
list.Add(new string[] { "Imagespath" });
list.Add(new string[]{file2.ToString()});
}
}
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rupali ShindePosted Apr 26, 2016, 4:16 AM