BF2Statistics.MainForm.ViewSnapshotLogBtn_Click C# (CSharp) Method

ViewSnapshotLogBtn_Click() private method

View Snapshot Logs Button Click Event
private ViewSnapshotLogBtn_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void ViewSnapshotLogBtn_Click(object sender, EventArgs e)
        {
            // Make sure the log file exists... It doesnt get created on startup like the others
            string fPath = Path.Combine(Program.RootPath, "Logs", "StatsDebug.log");
            if (!File.Exists(fPath))
                File.Create(fPath).Close();

            Process.Start(fPath);
        }
MainForm