public ActionResult ImageList(string path)
        {
            ImageListViewModel Obj = new ImageListViewModel();

            Obj.path = path;
            ImageUploader imageClient = new ImageUploader(System.Web.Configuration.WebConfigurationManager.AppSettings["GoogleCloud:BucketName"]);

            Obj.ImageList = imageClient.ListOfObjects(path);
            return(View(Obj));
        }