From 5b03ab8dc3fc1e8c496f3584479d3254a6bd0af7 Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Tue, 17 Feb 2026 16:40:14 +0900 Subject: [PATCH] Show error if dir does not exist in ScanFolder --- ViewModels/MainViewModel.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs index 083b9dd..ad5b7e6 100644 --- a/ViewModels/MainViewModel.cs +++ b/ViewModels/MainViewModel.cs @@ -196,6 +196,10 @@ class MainViewModel : BaseViewModel, IFontResolver ResortPDFItemsByDate(); } } + else + { + LogInfo("Error: The directory {0} does not exist. Please select another folder.", path); + } NotifyPropertyChanged(nameof(IsCreatePDFButtonEnabled)); }