14

如何使我的应用程序商店成为最后打开的路径,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();
}
4

8 回答 8

16

这是最简单的方法:FileDialog.RestoreDirectory

于 2013-04-18T09:05:06.100 回答
11

更改设置后,您必须致电

Settings.Default.Save();

在你打开你设置的 OpenFileDialog 之前

openFileDialog1.InitialDirectory = Settings.Default.acc_path;
于 2013-04-18T08:51:40.963 回答
4

我认为您使用SetCurrentDirectory来管理操作系统的当前目录就足够了。因此,在下一个对话框打开时,它将选择该路径。

或者只是将路径保存到应用程序的某个变量中并使用
FileDialog.InitialDirectory属性。

于 2013-04-18T08:49:23.427 回答
3

我发现您所要做的就是不设置初始目录,对话框会记住您上次保存/打开的位置。即使在应用程序关闭并重新打开后,这也会记住。在注释掉初始目录的情况下尝试此代码。上面的许多建议也将起作用,但如果您不是在寻找额外的功能,这就是您所要做的。

    private void button1_Click(object sender, EventArgs e)
    {
        Stream myStream = null;
        OpenFileDialog openFileDialog1 = new OpenFileDialog();

        //openFileDialog1.InitialDirectory = "c:\\";
        openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
        openFileDialog1.FilterIndex = 2;

        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            try
            {
                if ((myStream = openFileDialog1.OpenFile()) != null)
                {
                    using (myStream)
                    {
                        // Insert code to read the stream here.
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
            }
        }
    }
于 2016-01-22T17:59:32.247 回答
3

以下是确保 OpenFileDialog 将在用户上次选择的目录中打开的所有内容,在您的应用程序的生命周期内。

OpenFileDialog OpenFile = new OpenFileDialog();
OpenFile.RestoreDirectory = false;
于 2015-09-27T08:51:23.977 回答
2

我知道这是一个旧线程,但我无法找到我喜欢的相同问题的解决方案,所以我开发了自己的解决方案。我在 WPF 中做到了这一点,但它在 Winforms 中应该几乎相同。

本质上,我使用一个app.config文件来存储我的程序的最后一个路径。

当我的程序启动时,我读取配置文件并保存到全局变量。下面是我在程序启动时调用的类和函数。

public static class Statics
{
    public static string CurrentBrowsePath { get; set; }

    public static void initialization()
    {
        ConfigurationManager.RefreshSection("appSettings");
        Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

        CurrentBrowsePath = ConfigurationManager.AppSettings["lastfolder"];
    }
}

接下来我有一个按钮,可以打开文件浏览对话框并将InitialDirectory属性设置为存储在配置文件中的内容。希望这有助于任何一个谷歌搜索。

    private void browse_Click(object sender, RoutedEventArgs e)
    {
        OpenFileDialog open_files_dialog = new OpenFileDialog();
        open_files_dialog.Multiselect = true;
        open_files_dialog.Filter = "Image files|*.jpg;*.jpeg;*.png";
        open_files_dialog.InitialDirectory = Statics.CurrentBrowsePath;

        try
        {
            bool? dialog_result = open_files_dialog.ShowDialog();

            if (dialog_result.HasValue && dialog_result.Value)
            {
                string[] Selected_Files = open_files_dialog.FileNames;

                if (Selected_Files.Length > 0)
                {
                    ConfigWriter.Update("lastfolder", System.IO.Path.GetDirectoryName(Selected_Files[0]));
                }

                // Place code here to do what you want to do with the selected files.
            }
        }
        catch (Exception Ex)
        {
            MessageBox.Show("File Browse Error: " + Environment.NewLine + Convert.ToString(Ex));
        }
    }
于 2017-08-09T16:11:31.220 回答
1

您可以使用 InitialDirectory 属性:http: //msdn.microsoft.com/fr-fr/library/system.windows.forms.filedialog.initialdirectory.aspx

OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
openFileDialog1.InitialDirectory = previousPath;
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
    previousPath = Path.GetDirectoryName(openFileDialog1.FileName);
    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();
}
于 2013-04-18T08:50:49.587 回答
0

如果你使用

Dim myFileDlog As New OpenFileDialog()

然后你可以用它来恢复最后一个目录

myFileDlog.RestoreDirectory = True

这不是

myFileDlog.RestoreDirectory = False

(在 VB.NET 中)

于 2017-03-25T21:43:46.823 回答