Hello,
I'm creating a small app to copy reports between folders and when i use the search feature to find all the reports i would like to exclude certain folders. is that possible?
Using C#
Code:
propEnum[] props = new propEnum[] { propEnum.searchPath, propEnum.defaultName };
sort[] s = new sort[] { new sort() };
s[0].order = orderEnum.ascending;
s[0].propName = propEnum.defaultName;
queryOptions qo = new queryOptions();
searchPathMultipleObject reportsPath = new searchPathMultipleObject();
reportsPath.Value = "/content//report";
baseClass[] bc = cmService.query(reportsPath, props, s, qo);
if (bc.Length > 0)
{
foreach (baseClass report_item in bc)
{
Grid_CopyReportDataView.Rows.Add(report_item.defaultName.value, report_item.searchPath.value);
}
}
Thanks in Advance,
Jayson