From bfc13cb6ef19f0dc53f53b1ae07c2c6e29bb7fc3 Mon Sep 17 00:00:00 2001 From: datechnoman Date: Thu, 21 Dec 2023 09:35:39 +0000 Subject: [PATCH] Updated script to keep regenerating a list of files to download --- commoncrawl_transfer.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commoncrawl_transfer.ps1 b/commoncrawl_transfer.ps1 index 511f8cd..281c2c5 100644 --- a/commoncrawl_transfer.ps1 +++ b/commoncrawl_transfer.ps1 @@ -52,7 +52,7 @@ try $remoteFilePath = [WinSCP.RemotePath]::Combine($remotePath, $fileInfo.FullName) # Construct the local file path - $localFilePath = [System.IO.Path]::Combine("E:\CommonCrawl\", $fileInfo.Name) + $localFilePath = [System.IO.Path]::Combine("E:\CommonCrawl", $fileInfo.Name) # Download the file $transferResult = $session.GetFiles($remoteFilePath, $localFilePath, $True)