如何在delphi中使用dos命令?最好举个例子,如copy的用法。(50分)

  • 主题发起人 主题发起人 xyt3dnow
  • 开始时间 开始时间
X

xyt3dnow

Unregistered / Unconfirmed
GUEST, unregistred user!
如何在delphi中使用dos命令?最好举个例子,如copy的用法。
 
ShellExecute(handle,nil,pchar('copy c:/windows/command.com d:'),nil,nil,sw_shownormal);
 
就这样子。
 
有没有写错?我运行通不过。说是undeclated identifier:'shellexecute'.
 
在uses中加入 shellapi 单元
 
要uses shellapi进去才可以使用。
 
各位大哥,我把shellapi加进出了,这次可以运行了,但好像执行了以后却没事发生。
好像没执行过copy命令一样。我把同一命令在dos下运行却可以。还差点什么?
 
怎么了?没人能回答吗?
 
Winexec('C:/Command.com /c Copy C:/autoexec.bat D:/autoexec.bat',SW_NORMAL);
 
接受答案了.
 
后退
顶部