我正在开发一个需要自动提取WinRar SFX的程序。无论如何,一旦用进程启动exe,我可以以编程方式单击一个安装按钮吗?这是我到目前为止的代码。
public bool Extract()
{
try
{
Process process = new Process();
process.StartInfo.WorkingDirectory = FilePath;
process.StartInfo.FileName = FilePath + fileName;
process.Start();
process.WaitForExit();
}
catch (Exception)
{
return false;
}
return true;
}