directory class : FullName getter
Description
Gets the full path of the directory.
Syntax
directoryInstance.FullName
Arguments
None
Return value
Class | Description |
string | Full path of the directory. |
Sample code
1: | directory dir = new directory("c:\somewhere..."); |
2: | string fullPath = dir.FullName; |
Notes
It's a wrapper of the System.IO.DirectoryInfo.FullName property.