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