# File lib/rake/contrib/ftptools.rb, line 94
 94:     def initialize(path, host, account, password)
 95:       @created = Hash.new
 96:       @path = path
 97:       @ftp = Net::FTP.new(host, account, password)
 98:       makedirs(@path)
 99:       @ftp.chdir(@path)
100:     end