A little late but found this in search and wanted to help...
Take a look at admincp/cms_content_admin.php.
It looks like this would be what you need...
PHP Code:
require_once(DIR . '/includes/class_bootstrap_framework.php');
vB_Bootstrap_Framework::init();
if (method_exists(vB_Cache::instance(), 'clean'))
{
vB_Cache::instance()->clean(false);
}
It executes fine for me, I just have nothing in the cache atm to see if it had an effect. Let us know...