# File lib/core/facets/file/create.rb, line 13
  def self.create(path, str='', &blk)
    open(path, 'wb') do |f|
      f << str
      blk.call(f) if blk
    end
  end