NetBlog主题

C#数据备份与还原,源码实例
C#基础

C#数据备份与还原,源码实例

4040

private void button1_Click(object sender, EventArgs e){FolderBrowserDialog fbd = new FolderBrowserDialog();if (fbd.ShowDialog() == DialogResult.OK && !string.IsNullOrEmpty(fbd.SelectedPath)){this.txtBackup.Text = fbd.SelectedPath;}}private void btn…