C# 打开文件夹和保存文件夹
OpenFileDialog sfd = new OpenFileDialog();
sfd.ShowDialog();
this.textBox1.Text = sfd.FileName;
SaveFileDialog sfd = new SaveFileDialog();
sfd.ShowDialog();
OpenFileDialog sfd = new OpenFileDialog();
sfd.ShowDialog();
this.textBox1.Text = sfd.FileName;
SaveFileDialog sfd = new SaveFileDialog();
sfd.ShowDialog();