home *** CD-ROM | disk | FTP | other *** search
- uses
- eco_lib
-
- ;
-
-
- begin
- if __inparams('/?', error) or (paramcount = 0) then begin
- writeln(__progname);
- writeln(' Usage: ', __progname, ' path[filename] eindigt op errorlevel');
- writeln(__rep(length(__progname)+10, ' '), '2 als file bestaat, 1 als dir bestaat anders 0');
- halt;
- end;
- if __existfil(paramstr(1)) then halt(2) else
- if __existpath(paramstr(1)) then halt(1) else halt(0);
- end.
-