SecureBlackbox 2020 C++ Edition

Questions / Feedback?

AfterRemove Event

This event indicates completion of file removal request.

Syntax

ANSI (Cross Platform)
virtual int FireAfterRemove(SFTPServerAfterRemoveEventParams *e);
typedef struct {
int64 ConnectionID;
const char *Path;
int OperationStatus; int reserved; } SFTPServerAfterRemoveEventParams; Unicode (Windows) virtual INT FireAfterRemove(SFTPServerAfterRemoveEventParams *e);
typedef struct {
LONG64 ConnectionID;
LPCWSTR Path;
INT OperationStatus; INT reserved; } SFTPServerAfterRemoveEventParams;
- (void)onAfterRemove:(long long)connectionID :(NSString*)path :(int*)operationStatus;
#define EID_SFTPSERVER_AFTERREMOVE 3

virtual INT SECUREBLACKBOX_CALL FireAfterRemove(LONG64 &lConnectionID, LPSTR &lpszPath, INT &iOperationStatus);

Remarks

This event is fired when a request to delete a file or directory has been processed by the server. The ConnectionID parameter specifies the session in which the request was received. OperationStatus contains the operation result.

If needed, you can amend the OperationStatus to return a different operation result:

ostOk1
ostNoSuchFile2
ostAccessDenied3
ostWriteProtect4
ostUnsupported5
ostInvalidParameter6
ostEOF7

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