# File lib/ramaze/tool/project_creator.rb, line 75
  def copy(from, to)
    return unless copy?(to)

    relate = to.sub("#{target}/", '')
    puts  "%12s    %s" % ['create', relate]

    FileUtils.cp(from, to, :preserve => true)
    post_process(to)
  end