C# 打开文件夹和保存文件夹

            OpenFileDialog sfd = new OpenFileDialog();
            sfd.ShowDialog();
            this.textBox1.Text = sfd.FileName;

            SaveFileDialog sfd = new SaveFileDialog();
            sfd.ShowDialog();

  

原文地址:https://www.cnblogs.com/wxbug/p/7099603.html