From cd40fc9a9e0e57f6ac3f57eea4774e4955caba5f Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Fri, 26 Jun 2020 22:57:08 -0400 Subject: [PATCH] Test if lastpath exists before adding it to path scan --- oscar/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 86943fd5..13e61eeb 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -914,7 +914,8 @@ QList MainWindow::detectCPAPCards() qDebug() << "Drive list size:" << AutoScannerPaths.size(); if ( (lastpath.size()>0) && ( ! AutoScannerPaths.contains(lastpath))) { - AutoScannerPaths.insert(0, lastpath); + if (QFile(lastpath).exists()) + AutoScannerPaths.insert(0, lastpath); } Q_FOREACH(const QString &path, AutoScannerPaths) {