zl程序教程

您现在的位置是:首页 >  其它

当前栏目

Pascal Script

script pascal
2023-09-11 14:14:21 时间

MsgBox

http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_msgbox

 

ExpandConstant

http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_expandconstant

 

DelTree

http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_deltree

 

Event Functions

The Pascal script can contain several event functions which are called at appropriate times.

 

Setup event functions

Setup supports following event functions:

Uninstall event functions

Uninstall supports following event functions:

procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);

 

 

Constants

Here's the list of constants used by these functions:

 

 

 

Support Functions Reference

http://www.jrsoftware.org/ishelp/index.php?topic=scriptfunctions

The Pascal script can call several built-in support functions.

File functions

DelTree

Prototype:

function DelTree(const Path: String; const IsDir, DeleteFiles, DeleteSubdirsAlso: Boolean): Boolean;

 

Description:

Deletes the specified directory if IsDir is set to True, or files/directories matching a wildcard if IsDir is set to False. Returns True if it was able to successfully remove everything.

If DeleteFiles is set to True, files inside the specified directory will be deleted if IsDir is True, or files matching the specified wildcard (including those with hidden, system, and read-only attributes) will be deleted if IsDir is False.

If DeleteFiles and DeleteSubdirsAlso are both set to True, subdirectories (and their contents) will be deleted in addition to files.

 

Remarks:

This function will remove directories that are reparse points, but it will not recursively delete files/directories inside them.

 

Example:

begin
// Delete the directory C:\Test and everything inside it
DelTree('C:\Test', True, True, True);

// Delete files matching C:\Test\*.tmp
DelTree('C:\Test\*.tmp', False, True, False);

// Delete all files and directories inside C:\Test
// but leave the directory itself
DelTree('C:\Test\*', False, True, True);
end;