Having a strange problem when trying to remove a file i just downloaded with Qt.
My code:
QString location = "/path/to/app/Application.app";
QFile *rmFile = new QFile(location);
rmFile->remove();
File is not being removed.
Any ideas what could be wrong?