I have a root directory. I want to find out all directories under the root directory that do not have sub-directories and does not contain any .xml type files. I can get list of all directories under root directory from "FindFirstFile" and then for each item in the list, see if there are sub-directories for that item and if not then does it have any file of type ".xml". Is there a faster and elegant way for this? I working on Windows, VS 2010 and am open to using libraries like boost.
Thanks,