4
« en: Miércoles 25 de Febrero de 2004, 19:11 »
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main( void )
{
char folderName[255];
char sysCommand[261];
system("cls");
printf( "Diretorio A Crear: " );
scanf( "%s", &folderName );
sysCommand[0] = '\0';
strcat(sysCommand, "md ");
strcat(sysCommand, folderName);
system(sysCommand);
system("PAUSE");
return 0;
}
Deberia crear el directorio especificado por el usuario , pero no se por que no lo hace.