| C# | |
|---|---|
public static void FtpDownload( string host, int port, string protocol, string login, string pass, string proxy, string name, string localPath ) | |
Parameters
- host
Type: System.String
Address of the FTP server.- port
Type: System.Int32
Port of the FTP server.
- protocol
Type: System.String
The FTP protocol. It can be "FTP", "sFTP", or "FTPs".
- login
Type: System.String
Login of the FTP server
- pass
Type: System.String
Password of the FTP server
- proxy
Type: System.String
Proxy string in format: login:pass@ip:port OR ip:port
- name
Type: System.String
File name.
- localPath
Type: System.String
Destination path.
| C# | Copy Code |
|---|---|
var list = new System.Collections.Generic.List<string>(ZennoPoster.FtpGetList({host}, {port}, {login}, {password}, {proxy}, "", false, false)); foreach(var item in list) ZennoPoster.FtpDownload({host}, {port}, {protocol}, {login}, {password}, {proxy}, item, {directoryToSavePath}); | |
| PHP | Copy Code |
|---|---|
$list = new System::Collections::Generic::List<string>(ZennoPoster::FtpGetList({host}, {port}, {login}, {password}, {proxy}, "", false, false)); foreach($item as $list) ZennoLab\CommandCenter\ZennoPoster::FtpDownload({host}, {port}, {protocol}, {login}, {password}, {proxy}, $item, {directoryToSavePath}); | |
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family