Skip to main content

TdxPSFileBasedExplorerFolder.FullQualifiedDirName Property

Returns the folder’s full-qualified name.

Declaration

property FullQualifiedDirName: string read;

Property Value

Type
string

Remarks

Use the FullQualifiedDirName property to access the folder’s full-qualified name. Note that the folder’s name without the associated path can be accessed using the DirName property. The folder’s path without its name can be obtained via the FullQualifiedDirPath property. Thus, the FullQualifiedDirName property value is the concatenation of the FullQualifiedDirPath and DirName property values.

Suppose the current object represents the ‘C:\Documents\Reports' folder. The table below lists the properties mentioned and their return values in this case.

Property Return Value
DirName ‘Reports’
FullQualifiedDirName ‘C:\Documents\Reports’
FullQualifiedDirPath ‘C:\Documents'

Note that the properties mentioned will return the same strings when reading their values for a root folder. The only exception is that the FullQualifiedDirName property will return the path followed by the back slash.

See Also