使用PsFtp将文件上传到FTP Powershell

问题描述 投票:2回答:3

我一直在为这个问题绞尽脑汁,似乎无法解决。 我正在尝试使用PSFTP将文件上传到FTP。

我正在使用的脚本:

#------------------------------------------------------
#local variables

$ftp_server = "SERVERNAME"
$ftp_path = "/FTPPATH/PATH"
$local = "C:\ftp\"
$local_in = Join-Path $local "In"
$local_out = Join-Path $local "Out"
$session = "my_ftp_session"

# set up credentials object
$username = "FFandP"
$password = Get-Content "$local_out\Credentials.txt" | ConvertTo-SecureString -AsPlainText -Force 
$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username, $password

Set-FTPConnection -Server $ftp_server -Credentials $cred -Session $session -KeepAlive -confirm -UseBinary

Get-ChildItem -Path $local_out |
% {

$ftp_file = "$ftp_path/$($_.Name)" # determine item fullname
Add-FTPItem -Path $ftp_file -LocalPath $_.FullName -Session $session -
}

# -------------------------------------------------

和我收到的错误:

Add-FTPItem : Exception calling "GetResponse" with "0" argument(s): "The remote server     returned an error: (550) File 
unavailable (e.g., file not found, no access)."
At line:22 char:1
+ Add-FTPItem -Path $ftp_file -LocalPath $_.FullName -Session $session
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Add-FTPItem

我已经尝试过自己运行Add-FTPitem命令,但遇到相同的错误。

我可以使用FileZilla上传到FTP。 我也尝试过删除变量并使用硬编码路径。 我犯了同样的错误。

有任何想法吗?

powershell upload ftp
3个回答
1
投票

@Josh评论中的答案为我解决了。 使用-Overwrite参数运行Add-FTPItem。

Add-FTPItem -Path $remotePath -LocaPath $myPath -Overwrite

0
投票

我花了一点时间来解决这个问题,但这是我的解决方案(我有同样的问题)。

使用Add-FTPItem时,-Path参数不能包含文件名本身。

Add-FTPItem 
 -Path "ftp://SomeServer/SomeDir/"
 -LocalPath "C:\SomeFilename.ext"
 -Session $session

因此,在您的示例中应为:

Add-FTPItem -Path $ftp_path -LocalPath $_.FullName -Session $session

文件名将添加到远程FTP路径。 如果您不想使用相同的名称,则必须先在本地重命名文件,然后再进行远程重命名。


-1
投票

换块

Get-ChildItem -Path $local_out | %{ .... }

一行

Get-ChildItem -Path $local_out |  Add-FTPItem  -Path $ftp_path
© www.soinside.com 2019 - 2024. All rights reserved.