home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 4.5 Checkexe()
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- //───── NOTE: must compile with the /N option!
-
- function checkexe(file_name)
- LOCAL fh, fbuf1 := " ", fbuf2 := " ", retval := .f.
- if (fh := fopen(file_name)) >= 0
- Fread(fh, @fbuf1, 1)
- Fread(fh, @fbuf2, 1)
- fclose(fh)
- retval := ( asc(fbuf1) == 77 .and. asc(fbuf2) == 90 )
- endif
- return retval
-
- // end of file CHP0405.PRG
-