3

对powershell来说有点新意。我正在尝试找到一个类似 get-childitem 的命令,该命令将在 ftp 站点上运行。

这是一些伪代码:

$target = "c:\file.txt"
$username = "username"
$password = "password"
$ftp = "ftp://$username:$password@myftpsite"

$webclient = New-Object System.Net.WebClient 
$uri = New-Object System.Uri($ftp) 

#below is the code that does not work, get-childitem needs a local path
$name = get-childitem -path $ftp

get-childitem 仅适用于本地路径。有谁知道我在 ftp 站点上如何以这种方式访问​​文件名?

谢谢

4

1 回答 1

1

如果您希望 Get-ChildItem 在 FTP 访问的远程文件系统上工作,您需要一个 FTP PowerShell 提供程序。这篇论坛帖子提到了 Nick Howell 在 FTP 提供商上所做的工作。除此之外,我还没有听说过任何其他用于 PowerShell 的 FTP 提供程序。

于 2010-05-21T19:50:47.900 回答