NDog Posted January 4, 2018 Posted January 4, 2018 Sorry for the silly question. Since _FileListToArray doesn't support multiple filters, how then do I add all the desired multiple filters into one array? $hFilesFolders = _FileListToArray($sDriverDumpDir, 'driver.nfo') $hFilesFolders = _FileListToArray($sDriverDumpDir, 'oem*.inf')
mikell Posted January 4, 2018 Posted January 4, 2018 Better use _FileListToArrayRec which allows multiple filters pixelsearch and NDog 2
NDog Posted January 4, 2018 Author Posted January 4, 2018 Yes that is much better $hFilesFolders = _FileListToArrayRec($sDriverDumpDir, 'Driver.nfo;oem*.inf', $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now