Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. string[] findFiles = System.IO.Directory.GetFiles(@"C:Program Files (x86)", "Log.txt", System.IO.SearchOption.AllDirectories);
  2. foreach (string file in findFiles)
  3. {
  4. MessageBox.Show(file);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement