Jak zapisać ostatni folder w openFileDialog?

Jak sprawić, by moja aplikacja przechowywała ostatnią otwartą ścieżkęopenFileDialog i po nowym otwarciu przywróć go?

OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    acc_path = openFileDialog1.FileName;
    Settings.Default.acc_path = acc_path;

    foreach (string s in File.ReadAllLines(openFileDialog1.FileName))
    {
        accs.Enqueue(s);
    }
    label2.Text = accs.Count.ToString();
}

questionAnswers(6)

yourAnswerToTheQuestion