C#如何获取嵌入式.exe文件的PATH

时间:2014-10-20 23:38:21

标签: c# visual-studio

我有一个exe文件,我通过Windows命令提示符运行并提供命令行参数。我经历了this post并运行了以下命令:

System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames();

但它所做的就是给我位于WindowsFormsApplication1 \ obj \ Debug文件夹中的资源文件

我浏览了 this post ,但它告诉我如何直接执行exe而不从cmd运行它。

我甚至尝试了以下命令:

string path = Path.Combine(Path.GetTempPath(), "MyApplication.exe");

虽然有效,但在清除我的C:\ Users \ UserName \ AppData \ Local \ Temp文件夹后,应用程序开始出错。

我甚至尝试了以下命令:

global::ApplicationName.Properties.Resources.MyApplication

但是它给出了byte []而不是应用程序的路径。

我想知道的是如何运行嵌入在我的资源中的应用程序,以便我可以成功执行以下命令:

var proc = new Process
                    {
                        StartInfo = new ProcessStartInfo
                        {
                            FileName = "cmd.exe",
                            Arguments = "/K " + MyApplication+" Argument "+Path1+" "+Path2 ,
                            UseShellExecute = false,
                            RedirectStandardOutput = true,
                            CreateNoWindow = true
                        }
                    };
                    proc.Start();

                    while (!proc.StandardOutput.EndOfStream)
                    {

                        string line = proc.StandardOutput.ReadToEnd();
                        using (System.IO.StreamWriter file = new System.IO.StreamWriter(resultFile))
                        {
                            file.WriteLine(line);
                        }
                    }

1 个答案:

答案 0 :(得分:0)

将资源解压缩到文件系统中的文件中,然后运行它。

byte[] fileContents = ApplicationName.Properties.Resources.MyApplication;
File.WriteAllBytes("MyApplication.exe", fileContents);

现在,您可以使用MyApplicaton.exe作为路径运行该文件。