Create thumbnail with category folder
1 min read
try { Product obj_Product = new Product(); string[] filePaths = Directory.GetFiles(Server.MapPath(“~\\”+ Common.WebImageFolder )); foreach (string filePath in filePaths) { File.Delete(filePath); } string[] imageDirectory = Directory.GetDirectories(Server.MapPath(“~\\”... Read More
