#include <stdio.h>
#include <dirent.h>
int main()
{
// These are data types defined in the "dirent" header
DIR *theFolder = opendir("path/of/folder");
struct dirent *next_file;
char filepath[256];
while ( (next_file = readdir(theFolder)) != NULL )
{
// build the path for each file in the folder
sprintf(filepath, "%s/%s", "path/of/folder", next_file->d_name);
remove(filepath);
}
closedir(theFolder);
return 0;
}
No desea generar un nuevo shell a través de system()
o algo por el estilo:es una gran cantidad de gastos generales para hacer algo muy simple y hace suposiciones (y dependencias) innecesarias sobre lo que está disponible en el sistema.
En C/C++, podrías hacer:
system("exec rm -r /tmp/*")
En Bash, podrías hacer:
rm -r /tmp/*
Esto borrará todo dentro de /tmp, pero no /tmp en sí mismo.
usando el comodín *
carácter puede eliminar todos los archivos con cualquier tipo de extensión.
system("exec rm -r /tmp/*")