C#如何获取嵌入的.exe文件的PATH
本文关键字:exe 文件 PATH 何获取 获取 | 更新日期: 2023-09-27 18:27:24
我有一个exe文件,我通过windows命令提示符运行该文件,并提供命令行参数。我浏览了这篇文章,并运行了以下命令:
System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames();
但它所做的只是给我位于WindowsFormsApplication1''obj''Debug文件夹中的资源文件
我浏览了这篇文章,但它告诉如何在不从cmd运行的情况下直接执行exe。
我甚至尝试了以下命令:
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);
}
}
将资源提取到文件系统中的一个文件中,然后运行它。
byte[] fileContents = ApplicationName.Properties.Resources.MyApplication;
File.WriteAllBytes("MyApplication.exe", fileContents);
现在,您可以使用MyApplicaton.exe作为路径运行该文件。