-
-
Save pwhe23/93d4afdfd6e005921a07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Automate FTP uploads | |
| ## Go to destination | |
| cd C:\Test | |
| $location = Get-Location | |
| "We are here: $location" | |
| ## Get files | |
| $files = Get-ChildItem -recurse | |
| ## Get ftp object | |
| $ftp_client = New-Object System.Net.WebClient | |
| $ftp_address = "ftp://user:pass@adress:/home/chardcastle/test" | |
| ## Make uploads | |
| foreach($file in $files) | |
| { | |
| $directory = ""; | |
| $source = $file.DirectoryName + "\" + $file; | |
| if ($File.DirectoryName.Length -gt 0) | |
| { | |
| $directory = $file.DirectoryName.Replace($Location,"") | |
| } | |
| $Directory += "/"; | |
| $FtpCommand = $ftp_address + $directory + $file | |
| $uri = New-Object System.Uri($ftp_command) | |
| "Command is " + $uri + " file is $source" | |
| $ftp_client.UploadFile($uri, $source) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment