home *** CD-ROM | disk | FTP | other *** search
- **********************
-
- FUNCTION Fend
-
- PARAMETERS _thefile
-
- IF EMPTY(PCOUNT())
- RETURN(-1)
- ELSEIF TYPE("_thefile") != "N"
- RETURN(-1)
- ENDIF
-
- PRIVATE _current, _thelength
-
- _current = FSEEK(_thefile, 0, 1) && current position
- _thelength = FSEEK(_thefile, 0, 2) && the file length
- FSEEK(_thefile, _current, 0) && reset position (safety)
- RETURN( (_thelength - _current) )
-
- * End of File