Navigation: TCC > Variables & Functions > Functions
@FILEHANDLE
@FILEHANDLE[handle] : Returns the filename for the specified file handle (opened with @FILEOPEN).
Example:
set h=%@fileopen["d:\path\myfile.txt",r]
echo handle %h is : %@filehandle[%h]
handle 756 is : d:\path\myfile.txt