- using SHDocVw;
- using System;
- using System.IO;
- using System.Linq;
- namespace QVCopier.Utility
- {
- internal static class ExplorerAccessor
- {
- public static string[] GetOpenedWindowPath()
- {
- var paths = new ShellWindows().Cast<InternetExplorer>().Select(p => Path.GetFullPath(new Uri(p.LocationURL).AbsolutePath)).ToArray();
- return paths;
- }
- }
- }
|