- sábado ago 07, 2010 1:49 pm
#53090
Isto já me foi útil antes e tinha andado a procura, fica aqui pode ser útil para mais alguém.
Permite apagar ficheiros.
Permite apagar ficheiros.
Código: Selecionar todos
/* remove example: remove myfile.txt */
#include <stdio.h>
int main ()
{
if( remove( "myfile.txt" ) != 0 )
perror( "Error deleting file" );
else
puts( "File successfully deleted" );
return 0;
}