ExplorerAccessor.cs 400 B

12345678910111213141516
  1. using SHDocVw;
  2. using System;
  3. using System.IO;
  4. using System.Linq;
  5. namespace QVCopier.Utility
  6. {
  7. internal static class ExplorerAccessor
  8. {
  9. public static string[] GetOpenedWindowPath()
  10. {
  11. var paths = new ShellWindows().Cast<InternetExplorer>().Select(p => Path.GetFullPath(new Uri(p.LocationURL).AbsolutePath)).ToArray();
  12. return paths;
  13. }
  14. }
  15. }