# File lib/rake/contrib/ftptools.rb, line 105
105:     def initialize(path, host, account, password)
106:       @created = Hash.new
107:       @path = path
108:       @ftp = Net::FTP.new(host, account, password)
109:       makedirs(@path)
110:       @ftp.chdir(@path)
111:     end