Function Reference

_FTP_FindFileClose

FindFileハンドルを削除します。

#Include <FTPEx.au3>
_FTP_FindFileClose($h_Handle)

 

パラメータ

$h_Handle _FTP_FindFileFirst()の返し値

 

返し値

成功: 1
失敗: 0を返し、@errorを設定します。

 

注意

なし。

 

関連

_FTP_FindFileFirst, _FTP_FindFileNext

 

こちらも参照

MSDNライブラリでInternetCloseHandleを検索して下さい。

 


#include <FTPEx.au3>

$server = 'ftp.csx.cam.ac.uk'
$username = ''
$pass = ''

$Open = _FTP_Open('MyFTP Control')
$Conn = _FTP_Connect($Open, $server, $username, $pass)

Local $h_Handle
$aFile = _FTP_FindFileFirst($Conn, "/pub/software/programming/pcre/", $h_Handle)

$FindClose = _FTP_FindFileClose($h_Handle)
ConsoleWrite('$FindClose = ' & $FindClose & '  -> Error code: ' & @error & @crlf)

$Ftpc = _FTP_Close($Open)