SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_before_create_directory Event

Notifies about an incoming create directory request.

Syntax

class FTPServerBeforeCreateDirectoryEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def directory() -> str: ...
  @property
  def action() -> int: ...
  @action.setter
  def action(value) -> None: ...

# In class FTPServer:
@property
def on_before_create_directory() -> Callable[[FTPServerBeforeCreateDirectoryEventParams], None]: ...
@on_before_create_directory.setter
def on_before_create_directory(event_hook: Callable[[FTPServerBeforeCreateDirectoryEventParams], None]) -> None: ...

Remarks

The class fires this event to notify the application about a received MKDIR request. ConnectionID identifies the connected client.

Set Action to fraAuto to let the server handle the request automatically, or to fraCustom to handle the request in your code. Subscribe to on_create_directory to be notified when to perform the request. It is the on_create_directory event handler where you should perform the overridden action.

Upon completion of the request, either in manual or override mode, the on_after_create_directory event will be fired.

Choose Action as one of the following values:

fraAuto1Handle the requested action automatically by the server

fraCustom2Override the action using the user code logic

fraAbort3Abort the requested action

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