FTPv2 Function

FTPv2.ahk / oFTP

FTPv2()


Initializes and returns the FTP object. It is an alias for the FTP Class.

oFTP := FTPv2([AsyncMode, Proxy, ProxyBypass])

Parameters

AsyncMode

(Optional) Asynchronous callback function name. If it is number/true, built in function is used. (default: off) (see notes on asynchronous mode)

Proxy

(Optional) Connect via proxy (TIS FTP gateway, Socks only if IE installed)

ProxyBypass

(Optional) Bypass addresses from proxy (localhost bypassed by default)

Return Value

Creates an object with Methods and Properties as described below

Remarks

It is an alias for FTP class, creating and returning the FTP object.
An alias is required so that this class is Lib compatible. Jut put this library in your Lib folder,
no need to include.

Related

FTP Class, oFTP.Open()

Example

See Examples