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

TdxCloudStorageSpecialFolder Class

A metadata container corresponding to a special folder provided by the cloud file storage in the connected account.

#Declaration

Delphi
TdxCloudStorageSpecialFolder = class(
    TdxCloudStorageCustomFolder
)

#Remarks

Cloud file storage services provide special folders as temporary storages (such as the “Trash” folder) or dedicated file categories (such as “Recent” or “Starred” folders). Each special folder is an essential part of the file storage structure that cloud service accounts provide, and therefore, cannot be copied, moved, or deleted.

The TdxCloudStorageSpecialFolder class has the following members that allow you to:

  • Identify the special folder’s actual type (Type).

  • Identify if the special folder is populated with resources loaded from the connected server (IsLoaded).

  • Populate the first nesting level of the content structure (FetchChildren).

  • Identify whether the special folder is empty (IsLoaded and HasChildren).

  • Access the all files and folders within the special folder (Children).

  • Create a new empty folder (CreateFolder).

  • Upload a local file as a new online resource (UploadFile).

The cloud storage component’s Files.SpecialFolders.Items property references a TdxCloudStorageSpecialFolder object.

#Inheritance

See Also