繁体   English   中英

仅使用 PowerShell 将新文件从 FTP 目录下载到本地文件夹

[英]Only download new files from FTP directory to local folder using PowerShell

我有一个 PowerShell 脚本,它将所有文件从 FTP 目录下载到本地文件夹(感谢 Martin Prikryl)。

FTP 目录在一天中的不同时间使用多个新文件进行更新。

我将每 30 分钟通过任务计划程序运行我的脚本以从 FTP 目录下载文件。

我希望脚本检查并仅将新文件从 FTP 目录下载到本地文件夹。

注意:必须在 FTP 目录上进行检查,因为之前下载的文件可能会从本地文件夹中删除。

请参阅下面的我当前的脚本;

#FTP Server Information - SET VARIABLES
$user = 'user' 
$pass = 'password'
$target = "C:\Users\Jaz\Desktop\FTPMultiDownload"
#SET FOLDER PATH
$folderPath = "ftp://ftp3.example.com/Jaz/Backup/"

#SET CREDENTIALS
$credentials = new-object System.Net.NetworkCredential($user, $pass)

function Get-FtpDir ($url,$credentials) {
    $request = [Net.WebRequest]::Create($url)
    $request.Method = [System.Net.WebRequestMethods+FTP]::ListDirectory
    if ($credentials) { $request.Credentials = $credentials }
    $response = $request.GetResponse()
    $reader = New-Object IO.StreamReader $response.GetResponseStream() 
    $reader.ReadToEnd()
    $reader.Close()
    $response.Close()
}

$Allfiles=Get-FTPDir -url $folderPath -credentials $credentials
$files = ($Allfiles -split "`n")

$files 

$webclient = New-Object System.Net.WebClient 
$webclient.Credentials = New-Object System.Net.NetworkCredential($user,$pass)
$counter = 0
foreach ($file in ($files | where {$_ -like "*.*"})){
    $source=$folderPath + $file
    $destination = Join-Path $target $file
    $webclient.DownloadFile($source, $destination)

    #PRINT FILE NAME AND COUNTER
    $counter++
    $counter
    $source
}

在此先感谢您的帮助!

在您的循环中,在实际下载之前检查本地文件是否存在:

$localFilePath = $target + $file
if (-not (Test-Path $localFilePath))
{
    $webclient.DownloadFile($source, $localFilePath)
}    

由于您实际上不保留本地文件,因此您必须记住在某种日志中已经下载了哪些文件:

# Load log
$logPath = "C:\log\path\log.txt"

if (Test-Path $logPath)
{
    $log = Get-Content $logPath
}
else
{
    $log = @()
}

# ... Then later in the loop:

foreach ($file in ($files | where {$_ -like "*.*"})){
    # Do not download if the file is already in the log.
    if ($log -contains $file) { continue }

    # If this is a new file, add it to a log and ...
    $log += $file

    # ... download it using your code
}

# Save the log    
Set-Content -Path $logPath -Value $log

请注意,将列表拆分为行的代码不是很可靠。 如需更好的解决方案,请参阅我对PowerShell FTP 下载文件和子文件夹的回答。


相关问题:
使用 PowerShell 从 FTP 下载最新文件

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM