暫停腳本的執(zhí)行直至給定進(jìn)程不再存在為止。
ProcessWaitClose ( "進(jìn)程名" [, 超時(shí)時(shí)間] )
參數(shù)
進(jìn)程名 | 目標(biāo)進(jìn)程的名稱或 PID(進(jìn)程標(biāo)識(shí)符)。 |
超時(shí)時(shí)間 | [可選參數(shù)] 指定要等待的時(shí)間長(zhǎng)度(默認(rèn)為一直等待)。 |
返回值
成功: 返回值為1。
注意
進(jìn)程名是指可執(zhí)行文件的名稱(無(wú)需給出完整路徑),例如:"notepad.exe" 或 "winword.exe"
相關(guān)
ProcessClose, ProcessExists, ProcessWaitClose, RunWait, WinWaitClose
示例
;waits until no instance of notepad.exe exists
ProcessWaitClose("notepad.exe")
; This will wait until this particular instance of notepad has exited
$PID = Run("notepad.exe")
ProcessWaitClose($PID)