如何使用 PowerShell 的 FtpWebRequest class 从 FTP 服务器下载文件名中包含 pound/hash 符号“#”的文件
How to download files that contain a pound/hash sign '#' in the filename from an FTP server using PowerShell's FtpWebRequest class
我已经构建了一个从 FTP 服务器下载文件的脚本。该脚本适用于我尝试下载的所有文件,但包含 #
的文件除外。在做了一些研究后,我无法找到解决这个问题的方法。下面列出了我下载文件的代码。
function Get-FtpFile
{
Param ([string]$fileUrl, $credentials, [string]$destination)
try
{
$FTPRequest = [System.Net.FtpWebRequest]::Create($fileUrl)
if ($credentials)
{
$FTPRequest.Credentials = $credentials
}
$FTPRequest.Method = [System.Net.WebRequestMethods+Ftp]::DownloadFile
$FTPRequest.UseBinary = $true
# Send the ftp request
$FTPResponse = $FTPRequest.GetResponse()
# Get a download stream from the server response
$ResponseStream = $FTPResponse.GetResponseStream()
# Create the target file on the local system and the download buffer
$LocalFile = New-Object IO.FileStream ($destination,[IO.FileMode]::Create)
[byte[]]$ReadBuffer = New-Object byte[] 1024
# Loop through the download
do {
$ReadLength = $ResponseStream.Read($ReadBuffer,0,1024)
$LocalFile.Write($ReadBuffer,0,$ReadLength)
}
while ($ReadLength -ne 0)
$LocalFile.Close()
}
catch [Net.WebException]
{
return "Unable to download because: $($_.exception)"
}
}
我尝试使用 WebRequest.DownloadFile()
代替,但它仍然不适用于包含 #
的文件,我还尝试使用 FtpWebRequest
重命名方法重命名文件,并且也没有用。
有人知道这个问题的任何解决方案或解决方法吗?
您必须 URL-encode #
作为 URL ($fileUrl
) 中的 %23
。
如果您想以编程方式执行此操作,请参阅:
Download a file with name including special characters from FTP server in C#
在 PowerShell 中是这样的:
Add-Type -AssemblyName System.Web
$fileUrl = "https://example.com/path/" + [System.Web.HttpUtility]::UrlEncode($filename)
我已经构建了一个从 FTP 服务器下载文件的脚本。该脚本适用于我尝试下载的所有文件,但包含 #
的文件除外。在做了一些研究后,我无法找到解决这个问题的方法。下面列出了我下载文件的代码。
function Get-FtpFile
{
Param ([string]$fileUrl, $credentials, [string]$destination)
try
{
$FTPRequest = [System.Net.FtpWebRequest]::Create($fileUrl)
if ($credentials)
{
$FTPRequest.Credentials = $credentials
}
$FTPRequest.Method = [System.Net.WebRequestMethods+Ftp]::DownloadFile
$FTPRequest.UseBinary = $true
# Send the ftp request
$FTPResponse = $FTPRequest.GetResponse()
# Get a download stream from the server response
$ResponseStream = $FTPResponse.GetResponseStream()
# Create the target file on the local system and the download buffer
$LocalFile = New-Object IO.FileStream ($destination,[IO.FileMode]::Create)
[byte[]]$ReadBuffer = New-Object byte[] 1024
# Loop through the download
do {
$ReadLength = $ResponseStream.Read($ReadBuffer,0,1024)
$LocalFile.Write($ReadBuffer,0,$ReadLength)
}
while ($ReadLength -ne 0)
$LocalFile.Close()
}
catch [Net.WebException]
{
return "Unable to download because: $($_.exception)"
}
}
我尝试使用 WebRequest.DownloadFile()
代替,但它仍然不适用于包含 #
的文件,我还尝试使用 FtpWebRequest
重命名方法重命名文件,并且也没有用。
有人知道这个问题的任何解决方案或解决方法吗?
您必须 URL-encode #
作为 URL ($fileUrl
) 中的 %23
。
如果您想以编程方式执行此操作,请参阅:
Download a file with name including special characters from FTP server in C#
在 PowerShell 中是这样的:
Add-Type -AssemblyName System.Web
$fileUrl = "https://example.com/path/" + [System.Web.HttpUtility]::UrlEncode($filename)