SecureBlackbox 2020 Qt Edition

Questions / Feedback?

FindInit Event

An override for a directory listing initiation operation.

Syntax

class FTPServerFindInitEventParams {
public:
  qint64 ConnectionID();
  const QString &Directory();
  void SetDirectory(const QString &qsDirectory);
  int OperationStatus();
  void SetOperationStatus(int iOperationStatus);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void FindInit(FTPServerFindInitEventParams *e);
// Or, subclass FTPServer and override this emitter function. virtual int FireFindInit(FTPServerFindInitEventParams *e) {...}

Remarks

The class fires this event to let the application prepare for directory listing retrieval.

This event only fires if Action = fraCustom was passed back from BeforeFind event, and expects your code to perform the requested operation inside the handler. No default operation will be performed by the server component.

Use the OperationStatus parameter to return the operation result back to the server.

This event will be followed by a number of FindNext calls, requesting the directory listing entry by entry from your code, followed by a FindClose call.

Set OperationStatus to one of the following values:

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Qt Edition - Version 20.0 [Build 8154]