Example #1
0
 private void Button2_Click(object sender, EventArgs e)//全局加密
 {
     if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
     {
         string path = folderBrowserDialog1.SelectedPath;
         encrypter.MultiEncrypt(path);
     }
 }