method

copy_file

v1_9_1_378 - Show latest stable - Class: FileUtils::Entry_
copy_file(dest)
public

No documentation available.

# File lib/fileutils.rb, line 1263
    def copy_file(dest)
      File.open(dest, 'wb') do |f|
        IO.copy_stream(path(), f)
      end
    end