Module: FileUtils

Defined in:
lib/logging/utils.rb

Overview


Class Method Summary collapse

Class Method Details

.concat(src, dest) ⇒ Object

Concatenate the contents of the src file to the end of the dest file. If the dest file does not exist, then the src file is copied to the dest file using copy_file.



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/logging/utils.rb', line 126

def concat( src, dest )
  if File.exist?(dest)
    bufsize = File.stat(dest).blksize || 8192
    buffer = String.new

    File.open(dest, 'a') { |d|
      File.open(src, 'r') { |r|
        while bytes = r.read(bufsize, buffer)
          d.syswrite bytes
        end
      }
    }
  else
    copy_file(src, dest)
  end
end