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