Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCloudStorage.OnFolderCreated Event

In This Article

Enables you to respond to a successful folder create operation in the connected cloud storage.

#Declaration

Delphi
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