如何调用外部程序?(30分)

  • 主题发起人 主题发起人 tjlys
  • 开始时间 开始时间
T

tjlys

Unregistered / Unconfirmed
GUEST, unregistred user!
我想在delphi中调用winzip对某一个文件进行加密并压缩,请教各位如何处理
最好有代码
谢谢了!
 
要外部程序支持命令行才行

最好用pkzip吧

 
用ShellExecute试试,只要参数加的对,绝对没有问题的
 
同上 fhs
建议shellapi
 
[8D]
启动外部程序我们可以使用函数Winexec、ShellExecute和ShellExecuteEx。我推荐大家使用函数ShellExecute,因为它既灵活,又简单。看看下面的例子,用法就清楚了:

*: 启动一个程序

ShellExecute(Handle,'open',PChar('c:/test/app.exe'),nil,nil,SW_SHOW);

Winexec(pchar(edit1.text),sw_restore);

* 启动记事本 (因为记事本在系统路径下,所以不必写完整的路径名了):

ShellExecute(Handle, 'open', PChar('notepad'),nil, nil, SW_SHOW);

* 启动记事本并加载一个纯文本文件:

ShellExecute(Handle, 'open', PChar('notepad'),PChar('c:/test/readme.txt', nil, SW_SHOW);

* 使用记事本打开一个纯文本文件 (请确定*.txt文件被关联到记事本):

ShellExecute(Handle, 'open', PChar('c:/test/readme.txt'),nil, nil, SW_SHOW);

* 使用默认浏览器打开网址:

ShellExecute(Handle, 'open', PChar('http://www.festra.com/'),nil, nil, SW_SHOW);

* 打印一个文件:

ShellExecute(Handle, 'print', PChar('c:/test/readme.txt'),nil, nil, SW_SHOW);

* 用Windows Explorer打开一个文件夹:

ShellExecute(Handle, 'explore', PChar('c:/windows)',nil, nil, SW_SHOW);

* 运行一个DOS命令并立即返回:

ShellExecute(Handle, 'open', PChar('command.com'), PChar('/c copy file1.txt file2.txt'), nil, SW_SHOW);

* 运行一个DOS命令并保持DOS窗口打开 ("stay in DOS"):

ShellExecute(Handle, 'open', PChar('command.com'), PChar('/k dir'), nil, SW_SHOW);
[:)]
 
两位可不可以说的详细一点,或者推荐一些资料,
我对ShellExecute不太了解,
分数不够,可以再加
谢谢了
 
我常用的是winrar,将winrar.exe文件拷贝到你的应用程序所在的路径下即可,然后
procedure TForm1.Button1Click(Sender: TObject);
begin
winexec('winrar',sw_restore);
end;
 
谢谢大家了
 
后退
顶部