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


