Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5.  
  6. public class MainClass{
  7. public static void Main(){
  8. string FolderName = "Download";
  9. var instanceType = Type.GetTypeFromProgID("Shell.Application");
  10. dynamic shell = Activator.CreateInstance(instanceType);
  11. var folder = shell.Namespace("shell:"+FolderName);
  12. string directory = folder.Self.Path;
  13. Console.WriteLine(directory);
  14. }
  15. }
Add Comment
Please, Sign In to add comment