TdxCloudStorage.OnFolderCreated Event
Enables you to respond to a successful folder create operation in the connected cloud storage.
Declaration
property OnFolderCreated: TFolderChangeEvent read; write;
Remarks
This event occurs every time a cloud folder metadata container‘s CreateFolder procedure call successfully creates a new folder. If an attempt to create a folder results in an error, the OnError event occurs instead.
For instance, you can handle the OnFolderCreated event to access a newly created folder and populate it with one or more files from the local file system. Refer to the TFolderChangeEvent nested type description for details on all parameters accessible within an OnFolderCreated event handler.
See Also