0

我正在尝试使用 Windows 应用程序(c#)在我的系统上跟踪活动的应用程序/文件。

        [DllImport("user32.dll")]
        static extern IntPtr GetForegroundWindow();

        [DllImport("user32.dll")]
        static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);

        private string GetActiveWindowTitle()
        {
            const int nChars = 256;
            StringBuilder Buff = new StringBuilder(nChars);
            IntPtr handle = GetForegroundWindow();

            if (GetWindowText(handle, Buff, nChars) > 0)
            {
                return Buff.ToString() + " " + handle;
            }
            return null;
        }


        private string GetActiveWindowPath()
        {
            const int nChars = 256;
            StringBuilder Buff = new StringBuilder(nChars);
            IntPtr handle = GetForegroundWindow();
            int handleint = int.Parse(handle + "");
            SHDocVw.ShellWindows explorer = new SHDocVw.ShellWindows();

            //var xy = new SHDocVw.InternetExplorerMedium();

            var xpl = explorer.Cast<SHDocVw.InternetExplorerMedium>().Where(hwnd => hwnd.HWND == handleint).FirstOrDefault();
            if (xpl != null)
            {
                string path = new Uri(xpl.LocationURL).LocalPath;
                return ("location:" + xpl.LocationName + " path:" + path);
            }
            return "HWND" + handleint;
        }

但是通过使用上面的代码,我只获取文件标题而不是带有扩展名的完整文件名,并且通过使用其他方法,我只是获取文件夹信息。

但我正在尝试使用路径获取文件扩展名, 例如:D:\New Folder\sampleFile.txt

4

1 回答 1

1
 public static string GetMainModuleFilepath(int processId)
    {
        string wmiQueryString = "SELECT * FROM Win32_Process WHERE ProcessId = " + processId;
        using (var searcher = new ManagementObjectSearcher(wmiQueryString))
        {
            using (var results = searcher.Get())
            {
                ManagementObject mo = results.Cast<ManagementObject>().FirstOrDefault();
                if (mo != null)
                {
                    return (string)mo["CommandLine"];
                }
            }
        }
        Process testProcess = Process.GetProcessById(processId);
        return null;
    }

通过使用这个函数,你会得到一个字符串

"c:..\notepade.exe" D:\新建文件夹\sampleFile.txt"

在分裂之后,你想得到路径。我已经为 Office 2007 编写了这段代码,你们可以调试并找到更高版本的正确路径。

于 2014-12-24T07:58:45.070 回答