From 5d1fa10449e80e12e98d1dd4c496b4d2a7ecf86b Mon Sep 17 00:00:00 2001 From: Paul De Smul Date: Sat, 1 Feb 2025 14:18:56 +0100 Subject: [PATCH] Fix method name Forgot to save the file --- src/Services/IOService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/IOService.cs b/src/Services/IOService.cs index 6d8efee..fc67066 100644 --- a/src/Services/IOService.cs +++ b/src/Services/IOService.cs @@ -454,7 +454,7 @@ public static (string, string) GetDifferingRoot(in string path1, in string path2 /// /// /// - public static IEnumerable GetFilesInFolder(string path) + public static IEnumerable TryGetFilesInFolder(string path) { IEnumerable files = Enumerable.Empty(); if (Directory.Exists(path))