_rmtmp
Removes temporary files.
int _rmtmp( void );
Valor devuelto
_rmtmp returns the number of temporary files closed and deleted.
Comentarios
The _rmtmp function cleans up all temporary files in the current directory. The function removes only those files created by tmpfile; use it only in the same directory in which the temporary files were created.
Requisitos
Routine |
Required header |
---|---|
_rmtmp |
<stdio.h> |
For more compatibility information, see Compatibility in the Introduction.
Libraries
All versions of the C run-time libraries.
Ejemplo
See the example for tmpfile.
Equivalente en .NET Framework
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.