usar portable mac gratis descargar configurar como ftp powershell upload filezilla

ftp - portable - filezilla mac



Cargar Ftp con Powershell vs FileZilla (1)

Sin embargo, al establecer proxy = null no se modificó el tiempo, utilizando FTPWebRequest fue el truco.

Con un archivo de 210MB, usar un script como el siguiente toma un poco más de 10 minutos con Powershell:

$webclient = New-Object System.Net.WebClient $uri1 = New-Object System.Uri($Ftp2) $webclient.UploadFile($uri1, $File2)

Sin embargo, al usar FileZilla, toma menos de 2 minutos para el mismo archivo.

¿Está optimizado FileZilla? ¿Puedo mejorar la llamada Powershell de alguna manera?

Prefiero usar PS ya que tengo scripts que cargan archivos de varios GB ...