Set the path to open the logs folder properly

This commit is contained in:
2022-11-10 20:31:30 +00:00
parent 7afa7458c7
commit febf52738e
+3 -1
View File
@@ -379,9 +379,11 @@ namespace ASCOM.Meade.net
private void button1_Click(object sender, EventArgs e)
{
string myDocumentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
Process.Start(new ProcessStartInfo()
{
FileName = "C:\\",
FileName = $"{myDocumentsPath}\\ASCOM",
UseShellExecute = true,
Verb = "open"
});