(Delphi) DosCommand组件如何使用?

(Delphi) How to use DosCommand Component?

我已经在 Rad Studio Berlin 10 update 2 上安装了 https://github.com/TurboPack/DOSCommand,但我不知道如何使用它。我试过玩弄它,我搜索了 google 寻找示例,但找不到任何示例。

很遗憾,您的问题没有详细说明。 如果您成功安装了组件,它应该出现在组件面板中。请将它放在您的表单上,在 object 检查器中调整属性并调用 Execute

顺便说一句,你有没有阅读 "How to use it" 和 "Example" 单元中的评论 header?

 *******************************************************************
  How to use it :
  ---------------
  - just put the line of command in the property 'CommandLine'
  - execute the process with the method 'Execute'

例子

  Example : Make a dir :
  ----------------------
  - if you want to get the Result of a 'c:\dir /o:gen /l c:\windows\*.txt'
  for example, you need to make a batch file
  --the batch file : c:\mydir.bat
  @echo off
  dir /o:gen /l %1
  rem eof
  --in your code
  DosCommand.CommandLine := 'c:\mydir.bat c:\windows\*.txt';
  DosCommand.Execute;