Code:
nCnt := 0;
hFile := UTL_FILE.FOPEN (sDirPath, sFileName, 'r');
LOOP
   UTL_FILE.GET_LINE(hFile,sLine);
   nCnt := nCnt +1;
   IF nCnt > 1 THEN
      do you processing
   END IF;   
END LOOP;