From 76da0cc0815537777025e739c78650e7132364d2 Mon Sep 17 00:00:00 2001 From: Sourabh Namilikonda Date: Tue, 26 Nov 2024 11:46:41 -0800 Subject: [PATCH] formatting --- src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs b/src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs index 398ecd5e..1c364e0a 100644 --- a/src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs +++ b/src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs @@ -129,7 +129,7 @@ public bool IsValidFilePath(string filePath) if (filePath.EndsWith(" ") || filePath.EndsWith(".")) return false; } - + var fullPath = Path.GetFullPath(filePath); //check if its a network path, if so fail var fullPathUri = new Uri(fullPath.StartsWith(@"\\?\") ? fullPath.Replace(@"\\?\", "") : fullPath, UriKind.Absolute);