Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
snamilikonda committed Nov 26, 2024
1 parent e1dbc42 commit 76da0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.PowerApps.TestEngine/System/FileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 76da0cc

Please sign in to comment.