An open API service indexing awesome lists of open source software.

https://github.com/simonwahlin/posh-ftp

A PowerShell module for working with FTP
https://github.com/simonwahlin/posh-ftp

ftp-client powershell

Last synced: 7 months ago
JSON representation

A PowerShell module for working with FTP

Awesome Lists containing this project

README

          

# posh-ftp
A PowerShell module for working with FTP. The module works but is still a work in progress and is therefore not published to PowerShell Gallery.

Pullrequests are welcome!

## Example
```PowerShell
Import-Module -Name posh-ftp
$Credential = Get-Credential
$ComputerName = 'ftp://waws-prod-rx4-052.ftp.azurewebsites.windows.net'
$Session = New-FTPSession -ComputerName $ComputerName -Credential $Credential -Port 21 -Passive $true
Get-FTPChildItem -Session $Session -Path '/'
```