contents   index   previous   next



Clib.tmpfile()

syntax:

Clib.tmpfile()

return:

number - on success, a file pointer to a temporary binary file that will automatically be removed when it is closed or when the program exits, else null on failure.

 

description:

This method returns the file pointer of a temporary binary file that will automatically be removed when it is closed or when the program exits. Returns null if the function fails.

 

see:

Clib.tmpnam()

 

 


Clib.tmpnam()