delphi – 如何在Lazarus中为Mac执行相当于shellexecute()的操作?

前端之家收集整理的这篇文章主要介绍了delphi – 如何在Lazarus中为Mac执行相当于shellexecute()的操作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Lazarus中为Mac执行相当于 shellexecute()的操作?

解决方法

{这是代码来做到这一点.使用TProcess对象! }
uses Process;

...

procedure DoProcess;
Var
  Proc : TProcess;

Begin
  Proc := TProcess.Create(nil);
  try
    Proc.CommandLine := '/Applications/MyApp.app';

    PRoc.Options := Proc.Options + [poWaitOnExit];
    Proc.CommandLine := Proc.CommandLine + ' -someparam';
    PRoc.Execute;
  finally
    Proc.free;
  end;  
End;
原文链接:https://www.f2er.com/delphi/102061.html

猜你在找的Delphi相关文章