Skip to content

Commit

Permalink
Added a button to open the output directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
tnakamot committed Jul 3, 2024
1 parent 0cc7827 commit 0ca1450
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
19 changes: 17 additions & 2 deletions QSBLinearEncoderReader/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions QSBLinearEncoderReader/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,17 @@ private void buttonOpenCSV_Click(object sender, EventArgs e)
System.Diagnostics.Process.Start(path);
}

private void buttonOpenOutputDirectory_Click(object sender, EventArgs e)
{
string path = Properties.Settings.Default.OutputDirectory;
if (String.IsNullOrEmpty(path))
{
return;
}

System.Diagnostics.Process.Start(path);
}

private void buttonStartStatistics_Click(object sender, EventArgs e)
{
StartStatistics();
Expand Down

0 comments on commit 0ca1450

Please sign in to comment.