Schließt das Handle von FindFile
#include <FTPEx.au3>
_FTP_FindFileClose ( $hFTPFind )
| $hFTPFind | Rückgabewert von _FTP_FindFileFirst(). |
| Erfolg: | 1 |
| Fehler: | 0 und setzt das @error Flag auf ungleich 0 |
_FTP_FindFileFirst, _FTP_FindFileNext
Suche nach InternetCloseHandle in der MSDN Bibliothek.
#include <FTPEx.au3>
;~ Local $sServer = 'ftp.cs.brown.edu' ; Brown Computer Science
Local $sServer = 'speedtest.tele2.net' ; Tele2 Speedtest Service
Local $sUsername = ''
Local $sPass = ''
Local $hOpen = _FTP_Open('MyFTP Control')
Local $hConn = _FTP_Connect($hOpen, $sServer, $sUsername, $sPass)
Local $h_Handle
;~ Local $aFile = _FTP_FindFileFirst($hConn, "/pub/papers/graphics/research/", $h_Handle)
Local $aFile = _FTP_FindFileFirst($hConn, "/", $h_Handle)
Local $iFindClose = _FTP_FindFileClose($h_Handle)
ConsoleWrite('$FindClose = ' & $iFindClose & ' -> Fehler Code: ' & @error & @CRLF)
Local $iFtpc = _FTP_Close($hConn)
Local $iFtpo = _FTP_Close($hOpen)