1. 程式人生 > >Setup Factory 獲取安裝包檔名的方法

Setup Factory 獲取安裝包檔名的方法

這條語句直接獲取安裝包檔名  String.SplitPath(SessionVar.Expand("%SourceFilename%")).Filename

下邊分開來講一下:

 %SourceFilename% 是安裝包完整路徑變數。

SessionVar.Expand("%SourceFilename%") 用於獲取安裝包完整路徑包括檔名。

String.SplitPath 拆分路徑返回值是個table,table成員如下:

KEY

TYPE

DESCRIPTION

Drive

string

The drive portion of the path (for example, C:).

Folder

string

All of the folders within the path (for example, \MyFolder1\MyFolder2\).

Filename

string

The filename in the path (for example, "myfile").

Extension

string

The file extension in the path (for example, ".exe").

翻譯一下:  如果安裝包路徑是:"C:\Windows\setup.exe"

Dirve : 磁碟碟符,例如 "C:"

Folder:所在資料夾,例如 "C:\Windows"

Filename:檔名, 例如"setup"

Extension:副檔名,例如".exe"