У меня есть скрипт для загрузки файлов из каталога ftp.В этом каталоге у меня есть несколько папок, которые мне не нужны, и четыре файла .log, которые необходимо загрузить с помощью этого сценария:
# Import Custom PSFTP Module (PowerShell FTP).
Import-Module PSFTP
$FtpServer = "***.***.***.***"
$User = "USER"
$PWD = "****"
$Password = ConvertTo-SecureString $Pwd -AsPlainText -Force
$FtpCredentials = New-Object System.Management.Automation.PSCredential ($User, $Password)
Set-FTPConnection -Credentials $FtpCredentials -Server $FtpServer -Session MyFtpSession
$FtpSession = Get-FTPConnection -Session MyFtpSession
$ServerPath = "/sd0/"
$LocalPath = "C:\ftp"
$fileList = Get-FTPChildItem -Session $FtpSession -Path $ServerPath -Filter "*.log"
foreach ($element in $fileList ) {
$filename = $ServerPath + $element.name
Get-FTPItem -Session $FtpSession -Path $filename -LocalPath $LocalPath
У меня есть вывод:
ContentLength : -1
Headers : {}
SupportsHeaders : True
ResponseUri : ftp://***.***.***.***/
StatusCode : ClosingData
StatusDescription : 226 Transfer complete
LastModified : 1.1.0001 г. 00:00:00 ч.
BannerMessage : 220 FTP server ready.
WelcomeMessage : 230 Login OK
ExitMessage : 221 Bye
IsFromCache : False
IsMutuallyAuthenticated : False
ContentType :
Без загруженных файлов в локальном каталоге.В подробном режиме написано:
VERBOSE: Performing the operation "Download item: 'ftp://***.***.***.***/sd0/file1.log'" on target "".
VERBOSE: Performing the operation "Download item: 'ftp://***.***.***.***/sd0/file2.log'" on target "".
VERBOSE: Performing the operation "Download item: 'ftp://***.***.***.***/sd0/file3.log'" on target "".
VERBOSE: Performing the operation "Download item: 'ftp://***.***.***.***/sd0/file4.log'" on target "".
Есть идеи, как это исправить?