Created
January 23, 2018 22:28
-
-
Save esmarr58/05da2947e106c2367c1d9c99a92516f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void MainWindow::on_pushButton_clicked() | |
{ | |
QString texto = ui->lineEdit->text(); | |
QString comando = "mkdir "+texto; | |
system(comando.toUtf8().constData()); | |
ui->label->clear(); | |
ui->label->setText("Carpeta creada"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment