We have implemented ckfinder inside ckeditor and from browse server button ckfinder opens local storage folders.we are using cloudinary for images storage so,I want to open cloudinary folders when user click on browse server button. please help Thanks in advance
I googled ckfinder provide any support for cloudinary but did not find anything. in ckfinder website there are only 3 plugin mentioned which is azure, amazon s3 and dropbox
please see below code sample
string folderName = string.Concat("/", ResourceConstants.ResourceFileRootPath, "/", objconfigure.SiteID);
string baseUrl = string.Format("{0}://{1}/{2}", System.Web.HttpContext.Current.Request.Url.Scheme, System.Web.HttpContext.Current.Request.Url.Authority, ResourceConstants.ResourceFileRootPath);
config.AddBackend("default1", new LocalStorage(System.Web.HttpContext.Current.Server.MapPath(folderName)), baseUrl);
config.AddResourceType("Images", builder => builder.SetBackend("default1", "/"));
I want to assign cloudinary folders and path in config.addbackend function. in browse server button click I want to display folders from cloudinary