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
- Host: GitHub
- URL: https://github.com/simonwahlin/posh-ftp
- Owner: SimonWahlin
- License: mit
- Created: 2016-02-08T16:25:37.000Z (about 10 years ago)
- Default Branch: dev
- Last Pushed: 2017-02-12T14:31:06.000Z (about 9 years ago)
- Last Synced: 2025-02-09T13:11:51.562Z (about 1 year ago)
- Topics: ftp-client, powershell
- Language: PowerShell
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 '/'
```