Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. System.IO.FileInfo[] Files = directory.GetFiles();
  2. for (int FileCount = 0; FileCount < Files.Length; FileCount++)
  3. {
  4. **lblTest.Text = lblTest.Text +"<br>"+ Path.GetFullPath(Files[FileCount].ToString());**
  5. DirNode.ChildNodes.Add(new TreeNode(Files[FileCount].Name));
  6. }
  7.  
  8. lblTest.Text += Files[FileCount].FullName;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement