SecureBlackbox 2020 Delphi Edition

Questions / Feedback?

RemoveFile Event

An override for a file remove operation.

Syntax

type TRemoveFileEvent = procedure (
  Sender: TObject;
  ConnectionID: Int64;
  const Path: String;
  var OperationStatus: Integer
) of Object;

property OnRemoveFile: TRemoveFileEvent read FOnRemoveFile write FOnRemoveFile;

Remarks

The component fires this event to let the application perform an overridden file removal operation.

This event only fires if Action = fraCustom was passed back from BeforeRemoveFile 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 AfterRemoveFile call which will let you make final adjustments to the returned code.

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 Delphi Edition - Version 20.0 [Build 8166]