Hello,
I've been tasked to update an existing in-house tool that we have that find sub-folders with specific names in multiples root folder in our Content Server 16.2 environnement. The tool uses the CWS api with the GetNodeByName function to do so. One of the update requested to the tool is that it needs to always ignore the case of the searched subfolder name (for example, the tool need find the subfolder whether it's name is "EXAMPLE" or "example" or "eXAmpLE").
After I tested it, it appears that GetNodeByName doesn't have the option to ignore case. I could use ListNodes instead to iterate on each subitem each time, but since this tool needs to process a great number of folder each containing a lot of children, that would seem pretty inefficient to me.
The other option I have is to refactor the tool to use the REST api instead (the node api "where_name" filter seems to ignore case during my tests) but that would take significant time and changing api is a bit out of the scope of the requested changes to the tool.
I was wondering if there was any know way to use GetNodeByName while ignoring case?
Thanks in advance!