FileGetPath
--------------------------------------------------------------------------------

Returns the relative path to the physical file to which the handle is associated.


FileGetPath( filehandle )


 

Parameters

filehandle The handle of a file, as returned by a previous call to FileOpen. 

 

Return Value

Success: Returns a string with the relative file path. 
Failure: Returns 0 if the filehandle is invalid. 


Remarks

This will return the string as it was passed to FileOpen(). Remember that FileOpen() accepts relative paths, so if it was passed only a filename (instead of a full path) this funciton will only return the filename.

Realted
FileOpen()


