如何在代理服务器后面的Matlab中从ftp服务器下载?

时间:2018-03-08 10:11:35

标签: matlab ftp

MATLAB包含一个 ngOnInit() { this.sub = this.route.params.subscribe(params => { this.id = params['slug']; }); this.getCategoryByID(this.id); } getCategoryByID(slug) { this.serverService.getProductByCategory(slug) .subscribe( (response) => { fillProducts(response); }, (error) => console.log(error) ); } fillProducts(response : any){ response.map(product => {this.products.push(product)}); const productsToDisplay = this.products.forEach(element => { console.log(element) }); } 类,这样在正常情况下,我可以做类似的事情,

ftp

但是,我的互联网访问只能通过代理服务器,第一行(打开连接)给出

f = ftp(host,username,password);
mget(f, filename, targetfolder);
close(f);

Could not open a connection to "[hostname redacted]", port "21". 的文档明确说明" ftp功能不支持代理服务器设置。"。

那么,在MATLAB中有没有其他方法可以使用ftp下载内容?支持代理的更现代的东西似乎是围绕ftp建立的,但这似乎完全是基于http的。

0 个答案:

没有答案
相关问题