0

我想从另一个应用程序启动一个应用程序;编码

`public static void RunProcess(string AppProcessName)
        {
            string[] Files = Directory.GetFiles(AppProcessName);
            foreach (string file in Files)
            {
                if (System.IO.Path.GetExtension(file).Equals(".exe"))
                {
                    System.Diagnostics.Process AppProcess = new System.Diagnostics.Process();
                    System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
                    Info.FileName = file.Replace('/', '\\');
                    AppProcess.StartInfo = Info;
                    AppProcess.Start();
                    break;
                }
            }
        }`

但我得到一个例外 win32Exception

4

1 回答 1

0

.exe您尝试运行的文件不是 Windows Mobile 应用程序。仅仅因为您可以将其复制到 Windows Mobile 设备并不意味着它可以在 Windows Mobile 上运行。

于 2012-05-05T01:39:52.293 回答