mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Better qDebug messages when rebuilding data
This commit is contained in:
parent
bee6364c5e
commit
461abde2e6
@ -1931,6 +1931,7 @@ void MainWindow::purgeMachine(Machine * mach)
|
|||||||
mach->day.clear();
|
mach->day.clear();
|
||||||
QDir dir;
|
QDir dir;
|
||||||
QString path = mach->getDataPath();
|
QString path = mach->getDataPath();
|
||||||
|
qDebug() << "path to machine" << path;
|
||||||
path.chop(1);
|
path.chop(1);
|
||||||
|
|
||||||
p_profile->DelMachine(mach);
|
p_profile->DelMachine(mach);
|
||||||
@ -1943,7 +1944,10 @@ void MainWindow::purgeMachine(Machine * mach)
|
|||||||
SetFileAttributes(directoryPtr, GetFileAttributes(directoryPtr) & ~FILE_ATTRIBUTE_READONLY);
|
SetFileAttributes(directoryPtr, GetFileAttributes(directoryPtr) & ~FILE_ATTRIBUTE_READONLY);
|
||||||
if (!::RemoveDirectory(directoryPtr)) {
|
if (!::RemoveDirectory(directoryPtr)) {
|
||||||
DWORD lastError = ::GetLastError();
|
DWORD lastError = ::GetLastError();
|
||||||
qDebug() << "RemoveDirectory GetLastError: " << lastError;
|
qDebug() << "RemoveDirectory" << path << "GetLastError: " << lastError << "(Error 145 is expected)";
|
||||||
|
if (lastError == 145) {
|
||||||
|
qDebug() << path << "remaining directory contents are" << QDir(path).entryList();
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Success on second attempt deleting folder with windows API " << path;
|
qDebug() << "Success on second attempt deleting folder with windows API " << path;
|
||||||
|
Loading…
Reference in New Issue
Block a user