Change file permissions via FTP

Hi,

I have to upload a file via FTP and then change its permissions, i'm
using
net/ftp but i don't know how to change the perms.
How can I do that?
Should I use another library?

Thanks in advance.

Luca

···

--
Posted via http://www.ruby-forum.com/.

Not tested, but have you tried something like this?

  Net::FTP.open(host) do |conn|
    < login/chdir/upload code here >
    response = conn.sendcmd("SITE CHMOD 0664 #{filename}")
  end

···

* Luca Scatigno <skatz82@gmail.com> wrote:

Hi,

I have to upload a file via FTP and then change its permissions, i'm
using
net/ftp but i don't know how to change the perms.
How can I do that?

--
Lars Haugseth

Lars Haugseth wrote:

···

* Luca Scatigno <skatz82@gmail.com> wrote:

Hi,

I have to upload a file via FTP and then change its permissions, i'm
using
net/ftp but i don't know how to change the perms.
How can I do that?

Not tested, but have you tried something like this?

  Net::FTP.open(host) do |conn|
    < login/chdir/upload code here >
    response = conn.sendcmd("SITE CHMOD 0664 #{filename}")
  end

Thanks Lars,
I've tried your suggestion and it works. It solved my problem.
--
Posted via http://www.ruby-forum.com/\.