Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw0902.pp
Size: Mime:
uses
 dos;
begin
  writeln;
  writeln(fsearch('c:\command.com', ''));
  { here you get the full path in BP7, but nothing in FPC }
  writeln(fsearch('c:\command.com', 'c:\a'));
  { I really would not consider this as a bug !!  }
  { this use of fsearch is not document in BP PM  }
  if fsearch('c:\command.com', '')<>fsearch('c:\command.com', 'c:\a') then
    Writeln('fsearch result is not BP compatible');
end.