Call 'expandTo' method of tree to expand all the parent nodes of specify node. Please try the following code:
var c = $('#cc');
c.combotree('setValue','file32');
var t = c.combotree('tree'); // get tree object
var node = t.tree('find', 'file32'); // find the specify node
t.tree('expandTo', node.target);