venerdì 12 aprile 2013

Cancellare file in Qt

Un metodo per cancellare file in Qt
--------------------------------------------------------
void MainWindow::on_actionCancella_CVS_triggered()
{
    QFile file( QDir::homePath() + QDir::separator() +"anagrafiche_export.txt");
    if (file.exists())
    {
        file.remove();
    }
}

Nessun commento:

Posta un commento

RTK data in DJI log

Rispetto al precedente post ho letto che il parser non estrae tutte le informazioni dal log. A me interessano i dati RTK del drone. Per est...