I want of find files using search paths such as:
C:\Users\*\AppData\*\Temp\f?le.*
I am using Windows so I cannot us the glob.h header. I have used the Windows API function PathMatchSpec, but it only allows wildcards in the last part of the path (f?le.*). Is there anything I can do?
P.S. Please correct me if I am breaking any SO rules--I'm new to this site.