Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fnmatch for windows in C?

Tags:

c

windows

Is there a version of fnmatch for Windows? I'm trying to have the same functionality (basically using *'s from the command line for the filename) in C without having to call FindFirst() etc.

Code is appreciated.

EDIT: I need to accept wild cards from the command line for filenames, for example *.txt and be able to open each .txt file.

As I said, I don't want to use if possible FindFirst, FindNext. Thanks

like image 255
Jessica Avatar asked Mar 02 '10 15:03

Jessica


1 Answers

PathMatchSpecEx would be roughly equivalent, though it takes arguments in the opposite order.

like image 182
ephemient Avatar answered Nov 04 '22 08:11

ephemient