Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ftp_sync

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftp_sync

  • 0.4.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= FtpSync

A Ruby library for recursively downloading and uploading directories to/from ftp servers. Also supports uploading and downloading a list of files relative to the local/remote roots. You can specify a timestamp to only download files newer than that timestamp, or only download files newer than their local copy.

This was originally written to provide the functionality I needed for Munkey, a tool for tracking changes on FTP servers with git.

Allows you to supply a 'ignore' class that dictates whether a file is excluded from upload / download.

== Quickstart

ftp = FtpSync.new 'my.ftp.server.com', 'username', 'password' ftp.pull_dir '/tmp/syncdir', 'path/on/server'

make some changes on server

ftp.pull_dir '/tmp/syncdir', 'path/on/server', :since => true, :delete => true

:since => true - means only files which are newer than the local copy will be downloaded :since => Time.now - means only files which are newer than the supplied date will be downloaded :delete => true - means if the file is removed from the server, then the local copy is removed :skip_errors => true - means if file cant be read (ie permissions) it will be skipped

FAQs

Package last updated on 04 Nov 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc