Hi,
I write a plugin for CKFinder to compress and uncompress data with ISharpCodeZipLib,It works almost perfectly but when I try to uncompress some zip archive,the left panel's folder does not update,and
any one can help me?
I write a plugin for CKFinder to compress and uncompress data with ISharpCodeZipLib,It works almost perfectly but when I try to uncompress some zip archive,the left panel's folder does not update,and
file.folder.updateReference(); //does not work api.refreshOpenedFolder() //neither did this
any one can help me?

Re: Can CKFinder Retrieval folders?
createNewFolder: function(s) { r(s, this.app); var t = this; t.isDirty = true; t.app.connector.sendCommandPost('CreateFolder', { NewFolderName: s }, null, function(u) { if (u.checkError()) { t.app.oW('requestRepaintFolder', { folder: t }); return; } t.hasChildren = true; t.app.oW('afterCommandExecDefered', { name: 'CreateFolder', ip: t, uv: s }); }, this.type, this); }every time when I uncompress an archive my plugin will create a folder,so above code is the right choice,or i can parse the "GetFolders" command manually, thanks for reading.