CurrentDirectory may not be where the assembly locates. ``` diff // Initialize a "Strings" folder in the executables folder. - StringsFolderPath StringsFolderPath = Path.Combine(Directory.GetCurrentDirectory(), "Strings"); + StringsFolderPath StringsFolderPath = Path.Combine(AppContext.BaseDirectory, "Strings"); ```