本帖最后由 alwaystick 于 2016-3-14 19:42 编辑
@afan 大大晚上好!再劳烦a大下,假如没有检测到任何U盘,加一个提示怎么加呢,提示没有插入U盘,插入U盘后 ...
pyj521 发表于 2016-3-14 19:25
Local $sExe = 'love.EXE'
Local $aDrive = DriveGetDrive('REMOVABLE')
If @error Then
ToolTip("没有插入U盘")
Do
$aDrive = DriveGetDrive('REMOVABLE')
Until Not @error
For $i = 1 To $aDrive[0]
If $aDrive[$i] <> 'A:' And FileExists($aDrive[$i] & '\' & $sExe) Then _
ShellExecute($aDrive[$i] & '\' & $sExe)
Next
ElseIf Not @error Then
For $i = 1 To $aDrive[0]
If $aDrive[$i] <> 'A:' And FileExists($aDrive[$i] & '\' & $sExe) Then _
ShellExecute($aDrive[$i] & '\' & $sExe)
Next
EndIf
试试看,应该达到你的要求。 |