├── .gitattributes ├── .github └── workflows │ └── Build.yml ├── .gitignore ├── FileZilla ├── FileZilla Server Interface.xml ├── FileZilla Server.xml ├── FileZilla_Server-0_9_60_2.exe └── FileZilla_Server_Install.ps1 ├── Help ├── ConvertTo-WinSCPEscapedString.md ├── Copy-WinSCPItem.md ├── Get-WinSCPChildItem.md ├── Get-WinSCPHostKeyFingerprint.md ├── Get-WinSCPItem.md ├── Get-WinSCPItemChecksum.md ├── Get-WinSCPSession.md ├── Invoke-WinSCPCommand.md ├── Move-WinSCPItem.md ├── New-WinSCPItem.md ├── New-WinSCPItemPermission.md ├── New-WinSCPSession.md ├── New-WinSCPSessionOption.md ├── New-WinSCPTransferOption.md ├── New-WinSCPTransferResumeSupport.md ├── Receive-WinSCPItem.md ├── Remove-WinSCPItem.md ├── Remove-WinSCPSession.md ├── Rename-WinSCPItem.md ├── Send-WinSCPItem.md ├── Start-WinSCPConsole.md ├── Sync-WinSCPPath.md ├── Test-WinSCPPath.md ├── WinSCP.md ├── WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_HelpInfo.xml ├── WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.cab └── WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.zip ├── LICENSE ├── README.md ├── Tests ├── ConvertTo-WinSCPEscapedString.Tests.ps1 ├── Copy-WinSCPItem.Tests.ps1 ├── Get-WinSCPChildItem.Tests.ps1 ├── Get-WinSCPHostKeyFingerprint.Tests.ps1 ├── Get-WinSCPItem.Tests.ps1 ├── Get-WinSCPItemChecksum.Tests.ps1 ├── Get-WinSCPSession.Tests.ps1 ├── Invoke-WinSCPCommand.Tests.ps1 ├── Move-WinSCPItem.Tests.ps1 ├── New-WinSCPItem.Tests.ps1 ├── New-WinSCPItemPermission.Tests.ps1 ├── New-WinSCPSession.Tests.ps1 ├── New-WinSCPSessionOption.Tests.ps1 ├── New-WinSCPTransferOption.Tests.ps1 ├── New-WinSCPTransferResumeSupport.Tests.ps1 ├── Receive-WinSCPItem.Tests.ps1 ├── Remove-WinSCPItem.Tests.ps1 ├── Remove-WinSCPSession.Tests.ps1 ├── Rename-WinSCPItem.Tests.ps1 ├── Send-WinSCPItem.Tests.ps1 ├── Start-WinSCPConsole.Tests.ps1 ├── Sync-WinSCPPath.Tests.ps1 ├── Test-WinSCPPath.Tests.ps1 └── WinSCP.Tests.ps1 ├── Update-WinSCPCore.ps1 ├── WinSCP ├── Private │ └── Format-WinSCPPathString.ps1 ├── Public │ ├── ConvertTo-WinSCPEscapedString.ps1 │ ├── Copy-WinSCPItem.ps1 │ ├── Get-WinSCPChildItem.ps1 │ ├── Get-WinSCPHostKeyFingerprint.ps1 │ ├── Get-WinSCPItem.ps1 │ ├── Get-WinSCPItemChecksum.ps1 │ ├── Get-WinSCPSession.ps1 │ ├── Invoke-WinSCPCommand.ps1 │ ├── Move-WinSCPItem.ps1 │ ├── New-WinSCPItem.ps1 │ ├── New-WinSCPItemPermission.ps1 │ ├── New-WinSCPSession.ps1 │ ├── New-WinSCPSessionOption.ps1 │ ├── New-WinSCPTransferOption.ps1 │ ├── New-WinSCPTransferResumeSupport.ps1 │ ├── Receive-WinSCPItem.ps1 │ ├── Remove-WinSCPItem.ps1 │ ├── Remove-WinSCPSession.ps1 │ ├── Rename-WinSCPItem.ps1 │ ├── Send-WinSCPItem.ps1 │ ├── Start-WinSCPConsole.ps1 │ ├── Sync-WinSCPPath.ps1 │ ├── Test-WinSCPPath.ps1 │ └── WinSCP.psd1 ├── WinSCP.format.ps1xml ├── WinSCP.psd1 ├── WinSCP.psm1 ├── bin │ └── WinSCP.exe ├── en-US │ ├── WinSCP-Help.xml │ ├── about_WinSCP.help.txt │ ├── license-dotnet.txt │ ├── license-winscp-powershell.txt │ ├── license-winscp.txt │ └── readme_automation.txt └── lib │ ├── net40 │ └── WinSCPnet.dll │ └── netstandard2.0 │ └── WinSCPnet.dll └── docs ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/.gitignore -------------------------------------------------------------------------------- /FileZilla/FileZilla Server Interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/FileZilla/FileZilla Server Interface.xml -------------------------------------------------------------------------------- /FileZilla/FileZilla Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/FileZilla/FileZilla Server.xml -------------------------------------------------------------------------------- /FileZilla/FileZilla_Server-0_9_60_2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/FileZilla/FileZilla_Server-0_9_60_2.exe -------------------------------------------------------------------------------- /FileZilla/FileZilla_Server_Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/FileZilla/FileZilla_Server_Install.ps1 -------------------------------------------------------------------------------- /Help/ConvertTo-WinSCPEscapedString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/ConvertTo-WinSCPEscapedString.md -------------------------------------------------------------------------------- /Help/Copy-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Copy-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Get-WinSCPChildItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Get-WinSCPChildItem.md -------------------------------------------------------------------------------- /Help/Get-WinSCPHostKeyFingerprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Get-WinSCPHostKeyFingerprint.md -------------------------------------------------------------------------------- /Help/Get-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Get-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Get-WinSCPItemChecksum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Get-WinSCPItemChecksum.md -------------------------------------------------------------------------------- /Help/Get-WinSCPSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Get-WinSCPSession.md -------------------------------------------------------------------------------- /Help/Invoke-WinSCPCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Invoke-WinSCPCommand.md -------------------------------------------------------------------------------- /Help/Move-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Move-WinSCPItem.md -------------------------------------------------------------------------------- /Help/New-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPItem.md -------------------------------------------------------------------------------- /Help/New-WinSCPItemPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPItemPermission.md -------------------------------------------------------------------------------- /Help/New-WinSCPSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPSession.md -------------------------------------------------------------------------------- /Help/New-WinSCPSessionOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPSessionOption.md -------------------------------------------------------------------------------- /Help/New-WinSCPTransferOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPTransferOption.md -------------------------------------------------------------------------------- /Help/New-WinSCPTransferResumeSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/New-WinSCPTransferResumeSupport.md -------------------------------------------------------------------------------- /Help/Receive-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Receive-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Remove-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Remove-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Remove-WinSCPSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Remove-WinSCPSession.md -------------------------------------------------------------------------------- /Help/Rename-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Rename-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Send-WinSCPItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Send-WinSCPItem.md -------------------------------------------------------------------------------- /Help/Start-WinSCPConsole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Start-WinSCPConsole.md -------------------------------------------------------------------------------- /Help/Sync-WinSCPPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Sync-WinSCPPath.md -------------------------------------------------------------------------------- /Help/Test-WinSCPPath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/Test-WinSCPPath.md -------------------------------------------------------------------------------- /Help/WinSCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/WinSCP.md -------------------------------------------------------------------------------- /Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_HelpInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_HelpInfo.xml -------------------------------------------------------------------------------- /Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.cab -------------------------------------------------------------------------------- /Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Help/WinSCP_06e0af4e-779b-48f4-939f-c90b8ec950e6_en-US_HelpContent.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/README.md -------------------------------------------------------------------------------- /Tests/ConvertTo-WinSCPEscapedString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/ConvertTo-WinSCPEscapedString.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Copy-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Copy-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-WinSCPChildItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Get-WinSCPChildItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-WinSCPHostKeyFingerprint.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Get-WinSCPHostKeyFingerprint.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Get-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-WinSCPItemChecksum.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Get-WinSCPItemChecksum.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-WinSCPSession.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Get-WinSCPSession.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Invoke-WinSCPCommand.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Invoke-WinSCPCommand.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Move-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Move-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPItemPermission.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPItemPermission.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPSession.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPSession.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPSessionOption.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPSessionOption.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPTransferOption.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPTransferOption.Tests.ps1 -------------------------------------------------------------------------------- /Tests/New-WinSCPTransferResumeSupport.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/New-WinSCPTransferResumeSupport.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Receive-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Receive-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remove-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Remove-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remove-WinSCPSession.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Remove-WinSCPSession.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Rename-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Rename-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Send-WinSCPItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Send-WinSCPItem.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Start-WinSCPConsole.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Start-WinSCPConsole.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Sync-WinSCPPath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Sync-WinSCPPath.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Test-WinSCPPath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/Test-WinSCPPath.Tests.ps1 -------------------------------------------------------------------------------- /Tests/WinSCP.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Tests/WinSCP.Tests.ps1 -------------------------------------------------------------------------------- /Update-WinSCPCore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/Update-WinSCPCore.ps1 -------------------------------------------------------------------------------- /WinSCP/Private/Format-WinSCPPathString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Private/Format-WinSCPPathString.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/ConvertTo-WinSCPEscapedString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/ConvertTo-WinSCPEscapedString.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Copy-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Copy-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Get-WinSCPChildItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Get-WinSCPChildItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Get-WinSCPHostKeyFingerprint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Get-WinSCPHostKeyFingerprint.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Get-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Get-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Get-WinSCPItemChecksum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Get-WinSCPItemChecksum.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Get-WinSCPSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Get-WinSCPSession.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Invoke-WinSCPCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Invoke-WinSCPCommand.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Move-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Move-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPItemPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPItemPermission.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPSession.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPSessionOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPSessionOption.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPTransferOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPTransferOption.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/New-WinSCPTransferResumeSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/New-WinSCPTransferResumeSupport.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Receive-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Receive-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Remove-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Remove-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Remove-WinSCPSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Remove-WinSCPSession.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Rename-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Rename-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Send-WinSCPItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Send-WinSCPItem.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Start-WinSCPConsole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Start-WinSCPConsole.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Sync-WinSCPPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Sync-WinSCPPath.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/Test-WinSCPPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/Test-WinSCPPath.ps1 -------------------------------------------------------------------------------- /WinSCP/Public/WinSCP.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/Public/WinSCP.psd1 -------------------------------------------------------------------------------- /WinSCP/WinSCP.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/WinSCP.format.ps1xml -------------------------------------------------------------------------------- /WinSCP/WinSCP.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/WinSCP.psd1 -------------------------------------------------------------------------------- /WinSCP/WinSCP.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/WinSCP.psm1 -------------------------------------------------------------------------------- /WinSCP/bin/WinSCP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/bin/WinSCP.exe -------------------------------------------------------------------------------- /WinSCP/en-US/WinSCP-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/WinSCP-Help.xml -------------------------------------------------------------------------------- /WinSCP/en-US/about_WinSCP.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/about_WinSCP.help.txt -------------------------------------------------------------------------------- /WinSCP/en-US/license-dotnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/license-dotnet.txt -------------------------------------------------------------------------------- /WinSCP/en-US/license-winscp-powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/license-winscp-powershell.txt -------------------------------------------------------------------------------- /WinSCP/en-US/license-winscp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/license-winscp.txt -------------------------------------------------------------------------------- /WinSCP/en-US/readme_automation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/en-US/readme_automation.txt -------------------------------------------------------------------------------- /WinSCP/lib/net40/WinSCPnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/lib/net40/WinSCPnet.dll -------------------------------------------------------------------------------- /WinSCP/lib/netstandard2.0/WinSCPnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/WinSCP/lib/netstandard2.0/WinSCPnet.dll -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomohulk/WinSCP/HEAD/docs/ISSUE_TEMPLATE.md --------------------------------------------------------------------------------