PowerShell:递归上传文件到 FTP 服务器,如果目录不存在则创建任何目录(没有 try catch)
PowerShell: Upload files recursively to FTP server, creating any directory if it does not exist (without try catch)
我正在编写一个 PowerShell 脚本,它会定时执行,它会抓取特定目录和子目录的任何内容并将其副本上传到 FTP 服务器。
如果文件已经存在于服务器上,它将被覆盖。
如果该目录在服务器上不存在,将创建它。
我已经完成了大部分我需要它做的事情,但我仍然停留在创建子目录(如果不存在)部分。
我的代码是这样的,虽然还不是很干净。
function UploadFilesInDirectory($RemoteDestination, $LocalSource) {
$local_files = Get-ChildItem $LocalSource
foreach ($local_file in $local_files)
{
$isDirectory = (Get-Item $local_file.FullName) -is [System.IO.DirectoryInfo]
if ($isDirectory)
{
UploadFilesInDirectory -RemoteDestination "$RemoteDestination" -LocalSource "$LocalSource$local_file"
}
else
{
Write-Host "Uploading $local_file"
$desinationPath = $LocalSource.Replace("$local_backup\", "")
$desinationPath = "$remote_connection$desinationPath$local_file".Replace("\", "/")
$webclient.UploadFile("$desinationPath", $file.FullName )
}
}
}
任何帮助将不胜感激。
我认为在不使用 try
/catch
的情况下,无法使用简单的 .NET/PowerShell 功能有效地检查 FTP directory/file 是否存在。
要么你需要使用FtpWebRequest
特征来检查是否存在,但是你必须使用try
/catch
:
我不认为它有那么糟糕(如果你将测试分解为一个函数)。
或者您需要使用第三方 FTP module/library/assembly/tool。例如。 我的WinSCP .NET assembly。这也包含在我对
的回答中
或者您需要使用 ListDirectory
之类的东西来检索整个父目录列表,解析它并查找您要查找的目录。太没效果了
我正在编写一个 PowerShell 脚本,它会定时执行,它会抓取特定目录和子目录的任何内容并将其副本上传到 FTP 服务器。
如果文件已经存在于服务器上,它将被覆盖。
如果该目录在服务器上不存在,将创建它。
我已经完成了大部分我需要它做的事情,但我仍然停留在创建子目录(如果不存在)部分。
我的代码是这样的,虽然还不是很干净。
function UploadFilesInDirectory($RemoteDestination, $LocalSource) {
$local_files = Get-ChildItem $LocalSource
foreach ($local_file in $local_files)
{
$isDirectory = (Get-Item $local_file.FullName) -is [System.IO.DirectoryInfo]
if ($isDirectory)
{
UploadFilesInDirectory -RemoteDestination "$RemoteDestination" -LocalSource "$LocalSource$local_file"
}
else
{
Write-Host "Uploading $local_file"
$desinationPath = $LocalSource.Replace("$local_backup\", "")
$desinationPath = "$remote_connection$desinationPath$local_file".Replace("\", "/")
$webclient.UploadFile("$desinationPath", $file.FullName )
}
}
}
任何帮助将不胜感激。
我认为在不使用 try
/catch
的情况下,无法使用简单的 .NET/PowerShell 功能有效地检查 FTP directory/file 是否存在。
要么你需要使用
FtpWebRequest
特征来检查是否存在,但是你必须使用try
/catch
:
我不认为它有那么糟糕(如果你将测试分解为一个函数)。
或者您需要使用第三方 FTP module/library/assembly/tool。例如。 我的WinSCP .NET assembly。这也包含在我对
的回答中或者您需要使用
ListDirectory
之类的东西来检索整个父目录列表,解析它并查找您要查找的目录。太没效果了