TdxCloudStorageFolderChildren.FindFileByName(string) Method
In This Article
Returns the first file with the specified name.
#Declaration
Delphi
function FindFileByName(const Value: string): TdxCloudStorageFile;
#Parameters
Name | Type | Description |
---|---|---|
Value | string | The target file’s name (case-insensitive). |
#Returns
Type | Description |
---|---|
Tdx |
A file metadata container. |
#Remarks
Call this procedure and pass a file name as the Value parameter to search for this file in a cloud folder. The FindFileByName function returns nil (in Delphi) or nullptr/NULL (in C++Builder) if the cloud folder has no file with the specified name.
Note
Call the Find
See Also