em-ftp-client
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:EventMachine FTP Client
em-ftp-client is a simple EventMachine based FTP Client supporting operations
on stream data.  The primary interface is EventMachine::FtpClient::Session.  A
standard usage would look like:

    require 'eventmachine'
    require 'em-ftp-client'
    
    EM.run do
      EM::FtpClient::Session.new("0.0.0.0", 
        :username => "test", 
        :password => "1234") do |ftp|
        
        ftp.list do |l1|
          puts l1
          puts
          ftp.cwd("files") do
            ftp.list do |l2|
              puts l2
              puts
              ftp.put("one.txt") do
                ftp.stream {|d| puts "STREAMING: #{d.inspect}" }
                ftp.get("two.txt") do |t1|
                  puts "COMPLETED"
                  puts t1
                  puts
                  EM.stop
                end
              end
            end
          end
        end
      end
    end

This library also includes the class SyncSession, which uses fibers and works
with em-synchrony.

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。