作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何让我的应用程序存储在 openFileDialog
中打开的最后一个路径,并在新打开后恢复它?
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();
}
最佳答案
这是最简单的方法:FileDialog.RestoreDirectory .
关于c# - 如何在 openFileDialog 中保存最后一个文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16078362/
我是一名优秀的程序员,十分优秀!