Skip to content

Instantly share code, notes, and snippets.

@pwhe23
Forked from chardcastle/deploy-static.ps1
Created July 9, 2014 15:28
Show Gist options
  • Select an option

  • Save pwhe23/93d4afdfd6e005921a07 to your computer and use it in GitHub Desktop.

Select an option

Save pwhe23/93d4afdfd6e005921a07 to your computer and use it in GitHub Desktop.
## 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