file class : FullName getter

Description

Gets a full path of the file.

Syntax

fileInstance.FullName

Arguments

None

Return value

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

Links for reference

Copyright © Cooker All rights reserved.