我正在尝试使用 powershell 从指定的 url 获取图像并将其重新发送到 ftp。但它不是这样工作的:/
$url = "http://somesite.com/image.jpg"
$ftp = "ftp://username:password@hostname.com/folder/image.jpg"
$webclient = New-Object System.Net.WebClient
$uri = New-Object System.Uri($ftp)
$webclient.UploadFile($uri, $url)
有小费吗?谢谢!