2

正如我们所知,WPFOpenFileDialog不再更改应用程序的工作目录和RestoreDirectory属性是“未实现的”。但是,在随后打开时,它的初始目录默认为上次打开的文件而不是原始工作目录,因此必须将这些信息存储在某个地方。我想知道是否可以从用户代码中获取/设置它?

4

1 回答 1

5

在 Windows 7 上,最近的文件信息存储在注册表中的以下键处:

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Comdlg32\OpenSaveMRU

此键下方是各种文件扩展名(例如,、、、exedocx)的子键py

现在,如果您想读取这些值,这将获得存储在子键下的所有路径的列表(改编自此处):

String mru = @"Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSavePidlMRU";
RegistryKey rk = Registry.CurrentUser.OpenSubKey(mru);
List<string> filePaths = new List<string>();

foreach (string skName in rk.GetSubKeyNames())
{
    RegistryKey sk = rk.OpenSubKey(skName);
    object value = sk.GetValue("0");
    if (value == null)
        throw new NullReferenceException();

    byte[] data = (byte[])(value);

    IntPtr p = Marshal.AllocHGlobal(data.Length);
    Marshal.Copy(data, 0, p, data.Length);

    // get number of data;
    UInt32 cidl = (UInt32)Marshal.ReadInt16(p);

    // get parent folder
    UIntPtr parentpidl = (UIntPtr)((UInt32)p);

    StringBuilder path = new StringBuilder(256);

    SHGetPathFromIDListW(parentpidl, path);

    Marshal.Release(p);

    filePaths.Add(path.ToString());
}

参考:

于 2013-02-01T07:23:16.653 回答