Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FolderBrowserDialog FBD = new FolderBrowserDialog();
- if (FBD.ShowDialog() == DialogResult.OK) ;
- {
- string[] files = Directory.GetFiles(FBD.SelectedPath);
- foreach (string file in files)
- {
- File.Copy();
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment