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

TdxPSFileBasedExplorer.FindFolderByFullQualifiedDirName(string) Method

Returns an object representing the folder specified by its full-qualified name.

#Declaration

Delphi
function FindFolderByFullQualifiedDirName(const AFullQualifiedDirName: string): TdxPSFileBasedExplorerFolder;

#Parameters

Name Type
AFullQualifiedDirName string

#Returns

Type
TdxPSFileBasedExplorerFolder

#Remarks

Use the FindFolderByFullQualifiedDirName method to obtain a TdxPSFileBasedExplorerFolder object representing the folder specified by its full-qualified name. The desired folder’s name should be passed as the AFullQualifiedDirName parameter, if the folder specified doesn’t exist nil will be returned.

You can also obtain folders by traversing through the folders tree, use the Root property to access the root folder. The obtained object’s Folders and FolderCount properties can be used to access child folders.

See Also