|    | 
CFile:GetPath
The GetPath method returns as a string the full path name of the file attached to the CFile.
| sPath = CFile:Path() sPath = CFile:Path( nMaxChars ) | 
 The first form
returns the full path as a string.
    The first form
returns the full path as a string.
 The second form
returns an abbreviated path of, at most, nMaxChars characters.
    The second form
returns an abbreviated path of, at most, nMaxChars characters.
 On failure,
this method returns nil.
    On failure,
this method returns nil.
Suppose a CFile object F is attached to a file opened from the path sPath, which is 'C:\My Folder\My File.txt'. Then
| F = CFile:new() | -- Create a new CFile | 
| F:Open( sPath, "r+t" ) | -- open the file as text, for read and write | 
| Printf( "%s\n", F:GetPath() ) | -- prints 'C:\My Folder\My File.txt' | 
| Printf( "%s\n", F:GetPath(20) ) | -- prints 'C:\...\My File.txt' |