module Rake::DSL

def file_create(*args, &block)

(Mainly used for the directory command).
Declare a file creation task.
def file_create(*args, &block)
  Rake::FileCreationTask.define_task(*args, &block)
end