Guest User

Untitled

a guest
Apr 15th, 2017
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. FolderBrowserDialog FBD = new FolderBrowserDialog();
  2.  
  3.             if (FBD.ShowDialog() == DialogResult.OK) ;
  4.             {
  5.                 string[] files = Directory.GetFiles(FBD.SelectedPath);
  6.                 foreach (string file in files)
  7.                 {
  8.                     File.Copy();
  9.                 }
  10.             }
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment