directory class : FullName getter

Description

Gets the full path of the directory.

Syntax

directoryInstance.FullName

Arguments

None

Return value

ClassDescription
stringFull 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.

Links for reference

Copyright © Cooker All rights reserved.