私のアプリではOpenFileDialog
、一時的な場所 (%temp%) からファイルを選択していました。もう一度使用するOpenFileDialog
と、別の場所から開きます。temp 以外のフォルダが選択されている場合、この機能は正常に機能しています。
これはバグですか、それとも機能または技術的な制限ですか?
このコードを書きました。
public string[] OnOpenFile(string filetype)
{
string strReturn = null;
string[] strFilename = null;
System.Windows.Forms.OpenFileDialog fdlg = new System.Windows.Forms.OpenFileDialog();
fdlg.Title = "Select an Excel file to Upload.";
fdlg.Filter = filetype;
fdlg.RestoreDirectory = true;
if (fdlg.ShowDialog() == DialogResult.OK)
{
strFilename = fdlg.FileNames;
}
return strFilename;
}