0

当我试图在OnListDirectoryEvent 中为IdFTPServer1编译器编写代码时说:

[DCC Error] Unit1.pas(18): E2003 Undeclared identifier: 'TIdFTPListOutput'

似乎事件过程ADirectoryListingTIdFTPListOutput的未声明标识符在OnListDirectory此 indy 的其他事件函数中也存在相同的问题。我该如何解决?

procedure TForm1.IdFTPServer1ListDirectory(ASender: TIdFTPServerContext;
  const APath: string; ADirectoryListing: TIdFTPListOutput; const ACmd,
  ASwitches: string);
begin

end;

感谢您的帮助

4

1 回答 1

1

IdFTPListOutput单位添加到您的uses条款中。

于 2013-07-26T20:09:23.267 回答