I uploaded from windows m.e. and I used:
ftp = Net::FTP.new(‘www.4gigs.com’, user, pass, )
files = ftp.chdir(‘public_html’)
ftp.puttextfile(‘it.rb’, ‘it.rb’)
ftp.close
Is there some command like maybe?
ftp.chmod( ‘it.rb’, 755 )
or ftp.make_or_remove_a_directory?
Andrew Davies