Poaster/lib/write_file.rb
2025-05-15 11:44:02 -05:00

6 lines
171 B
Ruby

def write_file(directory, name, extension, content)
post_file = File.new(%(#{directory}/#{name}.#{extension}), 'w+')
post_file.syswrite(content)
post_file.close
end