Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. string[] filePaths = Directory.GetFiles(@"\94.175.237.35inetpub$wwwrootmytestBlogEngine", "*.xml");
  2.  
  3. string[] filePaths = Directory.GetFiles(@"..BlogEngine", "*.xml");
  4.  
  5. string folderPath = Server.MapPath("~/BlogEngine");
  6. string[] filePaths = Directory.GetFiles(folderPath, "*.xml");
  7.  
  8. string[] filePaths = Directory.GetFiles(Path.GetFullPath(@"..BlogEngine"), "*.xml");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement