From b76feb4dcaed43ae927cc6e4d7e10d55e3b1aa77 Mon Sep 17 00:00:00 2001 From: Sander ten Brinke Date: Sat, 18 Feb 2023 20:11:57 +0100 Subject: [PATCH] Fix program because Google Photos changed their zip files to Photos-001.zip --- PhotosForGrandpa.WPF/ViewModels/OrganizerViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PhotosForGrandpa.WPF/ViewModels/OrganizerViewModel.cs b/PhotosForGrandpa.WPF/ViewModels/OrganizerViewModel.cs index 93fe5cd..37cdc4c 100644 --- a/PhotosForGrandpa.WPF/ViewModels/OrganizerViewModel.cs +++ b/PhotosForGrandpa.WPF/ViewModels/OrganizerViewModel.cs @@ -13,7 +13,7 @@ namespace PhotosForGrandpa.WPF.ViewModels { public class OrganizerViewModel { - private string ZipFileFolderPath => Path.Combine(KnownFolders.Downloads.Path, "Photos.zip"); + private string ZipFileFolderPath => Path.Combine(KnownFolders.Downloads.Path, "Photos-001.zip"); private string PhotoFolderPath => Path.Combine(KnownFolders.Pictures.Path, FolderName); private string VideoFolderPath => Path.Combine(KnownFolders.Videos.Path, FolderName);