# File lib/autumn/tool/project_creator.rb, line 60
  def mkdir(dir)
    exists = File.directory?(dir)
    return if exists and amend?
    return if exists and not force?
    puts "mkdir(%p)" % dir
    FileUtils.mkdir_p(dir)
  end