Hi…
i want to copy a folder recursively
i did it using cp_r(source,destination)
it works correctly.
but it sould not be overwritted…
how can i do it pls help me…
even i used remove_destination => false…
but it gets overwritted…
any advices…
Thanks
Hi…
i want to copy a folder recursively
i did it using cp_r(source,destination)
it works correctly.
but it sould not be overwritted…
how can i do it pls help me…
even i used remove_destination => false…
but it gets overwritted…
any advices…
Thanks
Maybe you can use
unless File.exists?(destination) or Dir.exists?(desitination)
cp_r(source,destination)
end
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs