From 89642b7acdcd337eac59f87e5d774c52190ae0d1 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Thu, 11 Dec 2025 16:35:16 -0500 Subject: [PATCH] Fix nested path resolution failure Remove WorkingDirectory from ProcessStartInfo as it was incorrectly being set to a file path instead of a directory path, causing failures with deeply nested paths. --- .../Commands/OpenExecutableCommand.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CodingWithCalvin.OpenInNotepadPlusPlus/Commands/OpenExecutableCommand.cs b/src/CodingWithCalvin.OpenInNotepadPlusPlus/Commands/OpenExecutableCommand.cs index 5026709..84c969d 100644 --- a/src/CodingWithCalvin.OpenInNotepadPlusPlus/Commands/OpenExecutableCommand.cs +++ b/src/CodingWithCalvin.OpenInNotepadPlusPlus/Commands/OpenExecutableCommand.cs @@ -72,7 +72,6 @@ private static void OpenExecutable(string executablePath, string selectedFilePat { var startInfo = new ProcessStartInfo { - WorkingDirectory = selectedFilePath, FileName = $"\"{executablePath}\"", Arguments = $"\"{selectedFilePath}\"", CreateNoWindow = true,