Chdir(SOURCE_FILE_DIR)
numfiles=Adir(filearry)
I know you get files that have a specific extension like this: Adir(filearry, '*.TXT')
BUT can you use a negative condition with Adir
Example: get files from a folder where the extension is not .txt or .dat

Use ADIR to get specific files from a folder
MalamisuraE
RMarmion
Before I made the post I was thinking along the same lines as Craig B about removing items from the array.
What I ended up doing:
Loop through the file array
IF (ALLTRIM(JUSTEXT(filearry[cntr,1])) <> EXT_1) AND (ALLTRIM(JUSTEXT(filearry[cntr,1])) <> EXT_2)
** PROCESS FILE HERE
ENDIF
Thanks for taking the time to reply.
syeager