MATCH.EXE 16-bit DOS MODE
Purpose Test whether a filename matches a file pattern.
Description Can be used to test whether a specific file name matches a DOS file pattern with * wildcards. It will set the ERRORLEVEL to 1 if there is no match.


    MATCH version 1.00    written by Lincoln Jaros

    Correct syntax:

        match filename filepattern

        filename          file name to test
        filepattern       *.* type test pattern

        returns 0 for match, 1 for no match
        test result with errorlevel in batch file

		

DOWNLOAD