Now that I've learned how to post code, this is what I am trying to do:
 files = Files In Directory("c:\Test");
for(i=1, i<= N Items(files), i++, 
	Open(files[ i ],
		columns(
			DEV_ID = Character,
			. = Omit,
			TEST = Character,
			VEE = Numeric,
			IEE = Numeric,
			. = Omit,
			. = Omit,
			. = Omit,
			IDLNA = Numeric,
			. = Omit,
			. = Omit,
			TEMP = Character,
			FREQ = Numeric,
			. = Omit,
			. = Omit,
			DB21 = Numeric,
			. = Omit
		),
		Import Settings(
			End Of Line( CRLF, CR, LF ),
			End Of Field( Comma ),
			Strip Quotes( 1 ),
			Use Apostrophe as Quotation Mark( 0 ),
			Scan Whole File( 1 ),
			Labels( 1 ),
			Column Names Start( 15 ),
			Data Starts( 16 ),
			Lines To Read( All ),
			Year Rule( "10-90" )
		);
	)
)